首先,我想感謝大家可以幫助我,並說我是一名開發人員。Google Map地理位置和業務類型顯示
我試圖設置代碼爲Google地圖的地理定位只顯示出租車類型的地點標記。這個想法是,當我的網頁的訪問者進入該網站時,地圖會將訪問者位置和地圖進行地理定位,並且地圖僅顯示附近的租車地點。
我得到了geolocalization谷歌代碼:
<div id="map" style="width: 100%; height: 500px;"></div>
<script>
// Note: This example requires that you consent to location sharing when
// prompted by your browser. If you see the error "The Geolocation service
// failed.", it means you probably did not give permission for the browser to
// locate you.
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 6
});
var infoWindow = new google.maps.InfoWindow({map: map});
// Try HTML5 geolocation.
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var pos = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
infoWindow.setPosition(pos);
infoWindow.setContent('Location found.');
map.setCenter(pos);
}, function() {
handleLocationError(true, infoWindow, map.getCenter());
});
} else {
// Browser doesn't support Geolocation
handleLocationError(false, infoWindow, map.getCenter());
}
}
function handleLocationError(browserHasGeolocation, infoWindow, pos) {
infoWindow.setPosition(pos);
infoWindow.setContent(browserHasGeolocation ?
'Error: The Geolocation service failed.' :
'Error: Your browser doesn\'t support geolocation.');
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=[MYAPIKEY]&callback=initMap">
</script>
,它工作正常,但現在,我正在閱讀有關地方和類型,我沒有成功。
有什麼想法?任何人都可以幫助我?
此致敬意。
霍爾迪五 CarRentals.Deals
嗨,非常感謝。完美的作品!希望它能幫助其他人。美好祝願。 –
如果我的回答對你有幫助,你會介意接受嗎?謝謝 :) – rafon