Connecting Google Maps API on the any sites - gists · GitHub
文章推薦指數: 80 %
initMap() - функция инициализации карты. function initMap() {. // Координаты центра на карте. var centerLatLng = new google.maps.LatLng(52.086576, 23.704269);.
Skiptocontent
Allgists
BacktoGitHub
Signin
Signup
Sign in
Sign up
{{message}}
Instantlysharecode,notes,andsnippets.
hopea114y/GoogleMapsAPI
LastactiveMar28,2018
Star
0
Fork
0
Star
Code
Revisions
4
Embed
Whatwouldyouliketodo?
Embed
Embedthisgistinyourwebsite.
Share
Copysharablelinkforthisgist.
Clonevia
HTTPS
ClonewithGitorcheckoutwithSVNusingtherepository’swebaddress.
LearnmoreaboutcloneURLs
DownloadZIP
ConnectingGoogleMapsAPIontheanysites
Raw
GoogleMapsAPI
ThisfilecontainsbidirectionalUnicodetextthatmaybeinterpretedorcompileddifferentlythanwhatappearsbelow.Toreview,openthefileinaneditorthatrevealshiddenUnicodecharacters.
LearnmoreaboutbidirectionalUnicodecharacters
Showhiddencharacters
//initMap()-функцияинициализациикарты
functioninitMap(){
//Координатыцентранакарте
varcenterLatLng=newgoogle.maps.LatLng(52.086576,23.704269);
//Координатыметкинакарте
varpoint=newgoogle.maps.LatLng(52.086525,23.703963);
//Обязательныеопциискоторымибудетпроинициализированнакарта
varmapOptions={
center:centerLatLng,//КоординатыцентрамыберемизпеременнойcenterLatLng
zoom:17//Зумпоумолчанию.Возможныезначенияот0до21
};
//Создаемкартувнутриэлемента#map
varmap=newgoogle.maps.Map(document.getElementById("map"),mapOptions);
//Созданиеметкинакарте
varmarker=newgoogle.maps.Marker({
position:point,
map:map,
title:'Aspis',
draggable:false,
animation:google.maps.Animation.DROP
});
}
//Ждемполнойзагрузкистраницы,послеэтогозапускаемinitMap()
google.maps.event.addDomListener(window,"load",initMap);
//Скриптвфутер
延伸文章資訊
- 1Overview | Maps JavaScript API - Google Developers
function initMap(): void { map = new google.maps.Map(document.getElementById("map") as HTMLElemen...
- 2Connecting Google Maps API on the any sites - gists · GitHub
initMap() - функция инициализации карты. function initMap() {. // Координаты центра на карте. var...
- 3initMap不是Google Maps Javascript函式 - 程式人生
我無法克服錯誤:initMap不是一個函式。 我的jsfiddle在這裡:jsfiddle 我的程式碼: function initMap() { var map = new google.ma...
- 4initMap - 國土測繪圖資服務雲
- 5Step-by-step Guide On Calling Google Map Javascript API For ...
Create initMap() function in another script tag where you will use the google.maps.Map and google...