Last active
October 5, 2021 17:23
-
-
Save cod3cow/aec7ed3dae3262d975d6d53009ef6aa8 to your computer and use it in GitHub Desktop.
start external map navigation from ionic 2 app for ios and android; needs cordova-plugin-geolocation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
startExternalMap() { | |
if (this.location.latitude) { | |
this.platform.ready().then(() => { | |
Geolocation.getCurrentPosition().then((position) => { | |
// ios | |
if (this.platform.is('ios')) { | |
window.open('maps://?q=' + this.location.name + '&saddr=' + position.coords.latitude + ',' + position.coords.longitude + '&daddr=' + this.location.latitude + ',' + this.location.longitude, '_system'); | |
}; | |
// android | |
if (this.platform.is('android')) { | |
window.open('geo://' + position.coords.latitude + ',' + position.coords.longitude + '?q=' + this.location.latitude + ',' + this.location.longitude + '(' + this.location.name + ')', '_system'); | |
}; | |
}); | |
}); | |
}; | |
} |
updated syntax for ios 11+ ionic 3
window.open('maps://?q=' + address, '_system');
import { InAppBrowser } from '@ionic-native/in-app-browser/ngx';
constructor(public iab:InAppBrowser)
OpenMap(address) {
this.iab.create("https://maps.google.com/maps?q=" + address, "_blank");
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I had an issue with opening links to google maps app, from my Ionic app. The user location was not available so the user wasn't able to navigate.
This plugin solved the issue!