如何使用JavaScript中的坐标在另一个选项卡中打开Goog​​le Map?

时间:2017-06-14 07:13:18

标签: javascript google-maps

我在带有按钮的文本框中有坐标。我试图从文本框中取出坐标并与谷歌地图连接。我不想在我的网站上显示任何地图或其他内容。我只想从文本框中取出坐标,并在带有坐标的新选项卡中打开地图。我现在的逻辑:

MasterPage

修饰: 我想用标记显示这样的东西:

enter image description here

并显示:enter image description here

1 个答案:

答案 0 :(得分:2)

var coordinates, url;

$("#map").on('click', function () {
  coordinates = $('#coordinates').val();
  url         = "https://www.google.com.sa/maps/search/"+ coordinates +",12.21z?hl=en";

  window.open(url, '_blank');
});

要进行缩放,您需要使用以下值: enter image description here enter image description here