まずは、皆が私を助けてくれることに感謝し、私が開発の初心者だと言いたいと思います。Google Map Geolocationとビジネスタイプを表示
私はのGoogleマップを設定しようとしています。ジオラカリズム付きのGoogleマップでは、レンタカーのタイプが「」のマーカーのみが表示されています。アイデアは、私のウェブページの訪問者がサイトに入ると、マップは訪問者の位置をgeolocalizeし、マップは近くのレンタカーの場所のみを表示するということです。
私はgeolocalizationのGoogleのコードだ:
<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>
をそして、それが正常に動作しますが、今、私は場所や種類について読んでいると私は成功しません。
誰も私を助けることができますか?
事前に感謝します。
ジョルディV. CarRentals.Deals
こんにちは、ありがとうございます。完璧な作品!それが他の人に役立つことを願っています非常に敬具。 –
私の答えがあなたを助けたら、それを受け入れるのですか?ありがとう:) – rafon