gpt4 book ai didi

javascript - 从文本地址框创建链接以自动转到 Google map 街景

转载 作者:行者123 更新时间:2023-11-28 01:12:53 26 4
gpt4 key购买 nike

我想创建一个链接,将我带到“Google 街景”地址。我找到了这个: How to convert an address into a Google Maps Link (NOT MAP)

上述问题的解决方案是: http://maps.google.com/?q=1200宾夕法尼亚大道 SE,华盛顿哥伦比亚特区,20003

是否可以向链接添加参数以使其自动转到街景 View ?

我目前在应用程序中使用 arcgis World Geocoder,因此我将尝试将链接中输入的地址传递到 Google 街景 View 。

    function locate() {
map.graphics.clear();
var address = {
"SingleLine": dom.byId("address").value
};
locator.outSpatialReference = map.spatialReference;
var options = {
address: address
}
locator.addressToLocations(options);
}

谢谢!

最佳答案

可以做到

这是 Google 文档的示例

 var fenway = new google.maps.LatLng(42.345573,-71.098326);
var mapOptions = {
center: fenway,
zoom: 14
};
var map = new google.maps.Map(
document.getElementById("map-canvas"), mapOptions);
var panoramaOptions = {
position: fenway,
pov: {
heading: 34,
pitch: 10
}
};
var panorama = new google.maps.StreetViewPanorama(document.getElementById("pano"), panoramaOptions);
map.setStreetView(panorama);

here is the result

关于javascript - 从文本地址框创建链接以自动转到 Google map 街景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24211680/

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