获取Marker Open链接Google Maps React Native

时间:2017-08-19 07:53:06

标签: android reactjs react-native

我有这段代码

openGps() {
    var url = 'geo:-8.4526503, 115.2353083';
    this.openExternalApp(url)
  }

  openExternalApp(url) {
    Linking.canOpenURL(url).then(supported => {
      if (supported) {
        Linking.openURL(url);
      } else {
        Alert.alert('Eror Open Google Maps');
      }
    });
  }

当我点击时,没有任何标记出现

enter image description here

我想在地图中找到标记,有人知道要呼叫的网址吗?

在Android中调用函数openGps()时如何获得标记?

1 个答案:

答案 0 :(得分:3)

您可以使用

Linking.openURL(`https://maps.apple.com/?q=${markerName}&ll=${lat},${lng}`);