Harmattan Tips and Workarounds/GPS

(ACTIVATE)
 
(One intermediate revision not shown)
Line 13: Line 13:
* http://talk.maemo.org/showpost.php?p=1117934&postcount=768
* http://talk.maemo.org/showpost.php?p=1117934&postcount=768
-
==== ACTIVATE =====
+
==== ACTIVATE ====
Just upload and run this shell script :
Just upload and run this shell script :
Line 81: Line 81:
</pre>
</pre>
 +
* http://talk.maemo.org/showthread.php?p=1472826#post1472826
[[Category:Harmattan]]
[[Category:Harmattan]]

Latest revision as of 07:30, 6 June 2015

[edit] MAPS / GPS

POI’s can be imported to maps.nokia.com, & then synced w/the N9’s maps apps (wrong?)

Add new POI’s to maps.nokia.com

Issue with dloading voices for drive app :

[edit] ACTIVATE

Just upload and run this shell script :


    f="/home/user/.config/Nokia/Drive.ini"

    if [ ! -r "$f.orig" ] ; then
        mv "$f" "$f.orig"
        cat<<EOF>"$f.mine" && ln "$f.mine" "$f"
[GeneralSettings]
unitSystem=metric
ssoDone=true
appVersion=2.0.8+0m8
serviceAgreedOn="Fri, 1 May 2015 17:15:38 GMT"
allowConnections=true
traffic=false
routeOptions=63
gpsPowersaving=true

[MapSettings]
Perspective=2D
MapScheme=carnav.day.grey

[GuidanceSettings]
voiceSkin=5000
speedWarner=true
speedWarnerAudio=true
lowSpeedOffset=0
highSpeedOffset=0
EOF
    fi
    
    f="/home/user/.config/Nokia/Maps.conf"
    if [ -r "$f.orig" ] ; then
        mv "$f" "$f.orig"
    
        cat<<EOF>"$f.mine" && ln "$f.mine" "$f"
[General]
isSsoEnabled=false
rebootMode=0


[places]

shareBaseURI=http://m.ovi.me
searchURI=http://where.desktop.mos.svc.ovi.com/NOSe/json
suggestionsURI=http://where.desktop.mos.svc.ovi.com/NOSe/json
placesURI=http://places.here.com/rest/v1/places/
recommendationsURI=http://avalon.mobile.recommendations.maps.svc.ovi.com/rest/v1/recommendations/nearby/

[odml]
odmlBaseURI=http://static.maploader.maps.svc.ovi.com/map5/

[sso]

ssoType=production


[nps]

feedbackEnv=prd

EOF
    fi