gpt4 book ai didi

ios - 如何在钛合金应用程序中在 iOS 谷歌地图上显示方向

转载 作者:行者123 更新时间:2023-11-29 02:11:33 25 4
gpt4 key购买 nike

是否有任何适用于钛合金的附加模块可以让您在 iOS 应用程序的 Google map 上显示方向? IE。我想显示一条标记的路​​线,显示汽车如何从 A 到 B。我知道如何在 map 上添加线条,但不知道如何计算出路线,或者更好的办法是自动完成。

我显然可以通过创建一个 webview 来做到这一点,但如果可能的话我宁愿不这样做。

最佳答案

iOS Map Kit 可以显示注释,然后可以包含方向等地点。

合金 Controller :index.js

var MapModule = require('ti.map');
var opera = MapModule.createAnnotation({
latitude: -33.8569,
longitude: 151.2153,
centerOffset: {x: 80, y: 25},
image: 'SydneyOperaHouse.jpg',
title: 'Sydney Opera House',
subtitle: 'Sydney, New South Wales, Australia',
// For eventing, use the Map View's click event
// and monitor the clicksource property for 'rightButton'.
rightButton: Ti.UI.iPhone.SystemButton.CONTACT_ADD
});

var bridge = MapModule.createAnnotation({
latitude: -33.852222,
longitude: 151.210556,
pincolor: MapModule.ANNOTATION_PURPLE,
title: 'Sydney Harbour Bridge',
subtitle: 'Port Jackson',
// For eventing, use the Map View's click event
// and monitor the clicksource property for 'leftButton'.
leftButton: Ti.UI.iPhone.SystemButton.INFO_DARK
});

var mapview = MapModule.createView({
mapType: MapModule.NORMAL_TYPE,
region: {latitude: -33.87365, longitude: 151.20689, latitudeDelta: 0.1, longitudeDelta: 0.1 },
annotations: [bridge,opera]
});
$.index.add(mapview);
$.index.open();

enter image description here

不要忘记将此模块包含在您的 Tiapp.xml 中,即

<modules>
<!-- Add this line to your modules section -->
<module platform="iphone">ti.map</module>
</modules>

关于ios - 如何在钛合金应用程序中在 iOS 谷歌地图上显示方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29240462/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com