我正在为自己制作一个小型演示应用程序,我使用Gmaps.js库作为处理地图的主要工具,并在我尝试绘制路线时遇到问题。
此代码(来自文档)效果很好
map.drawRoute({
origin: [-12.044012922866312, -77.02470665341184],
destination: [-12.090814532191756, -77.02271108990476],
travelMode: 'driving',
strokeColor: '#131540',
strokeOpacity: 0.6,
strokeWeight: 6
});
这个(我的)不起作用
map.drawRoute({
origin: [32.090814532191756, -85.090814532191756],
destination: [32.000814532191756, -85.090814532191756],
travelMode: 'driving',
strokeColor: '#131540',
strokeOpacity: 0.6,
strokeWeight: 6
});
你能帮我找出差异吗? 我将感谢任何其他图书馆使用地图的建议。
答案 0 :(得分:0)
根源是Google Maps API密钥。