早上好。
我目前正在使用以下代码在特定的long-lat加载我的Google Map的API V3,这是针对客户端的,我想知道我是否可以加载类似于Google上弹出的infoWindow包含商家信息的地图,评论明星等。
<script type="text/javascript">
function initialize() {
var mapOptions = {
center: new google.maps.LatLng(lat-long),
disableDefaultUI: true,
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("location"),
mapOptions);
var point = new google.maps.LatLng(lat-long);
var marker = new google.maps.Marker({
position:point,
map: map,
});
}
</script>
这是在不同的API中完成的吗?如果是这样,有人能指出一些有用的信息吗?
非常感谢, 贾尔斯。
答案 0 :(得分:5)
听起来您可能正在寻找Places API / Library:
https://developers.google.com/maps/documentation/javascript/places#place_details_responses
不确定它是否包含您在Google地图上找到的所有内容。