Jump to content
  • 0

API Google Map v3


ShumNo
 Share

Question

Добрый вечер.

Помогите пожалуйста решить такую задачу:

Нужно при нажатии на ссылку показать на карте (google map) выбранную область

в версии 2 это делалось следующим образом

<span onclick="map.setCenter(new GLatLng(40.3,-58.5), 2);" style="cursor: pointer;"><u>Титл ссылки</u></span>

От версии 2 к версии 3 код Google API изменился в этом участке следующим образом:

v2

var map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(40.3,-58.5), 15);>

v3

var myLatlng = new google.maps.LatLng(40.3,-58.5);
var myOptions = {
zoom: 15,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}

var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

Мои манипуляции увы ни к чему не привели :) Помогите пожалуйста сформировать ссылку чтобы при нажатии на нее открывался нужный кусок карты на нужном зум левеле.

такая конструкция почему-то не работает и не очень мне понятно куда запихнуть уровень зума

<span onclick="map.setCenter(new google.maps.LatLng(40.3,-58.5);" style="cursor: pointer;"><u>Титл ссылки</u></span>

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Может быть и странно да только в документации ни слова про это нет и ни в одном примере это не показано.

А вот за линк форума спасибо, попробую и там поискать. я еще почему написал тут, так как подумал, что вопрос то простой, как мне видится, но видать он может и простой да тесно связан с самим api гугла и ответить на него не зная api видимо сложно.

Но если вдруг кто чего откуда, то сразу сюда :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy