คุณเคยสามารถคลิกขวาและวางเครื่องหมาย lat-lon ที่จุดเพื่อรับพิกัด:
คุณจะได้ละติจูดและลองจิจูดใน Google แผนที่ใหม่ได้อย่างไร
อัปเดต:เพิ่งได้รับอีเมลจาก Google วันนี้พร้อมประกาศนี้:
คุณเคยสามารถคลิกขวาและวางเครื่องหมาย lat-lon ที่จุดเพื่อรับพิกัด:
คุณจะได้ละติจูดและลองจิจูดใน Google แผนที่ใหม่ได้อย่างไร
อัปเดต:เพิ่งได้รับอีเมลจาก Google วันนี้พร้อมประกาศนี้:
คำตอบ:
คุณสามารถรับละติจูด / ลองจิจูดอีกครั้งสำหรับจุดใดก็ได้บนแผนที่โดยคลิกขวา (หรือCtrl+ คลิก) แล้วเลือก "นี่คืออะไร"
[ที่มา: + GoogleMaps ]
คลิกซ้ายที่สถานที่ที่คุณต้องการพิกัด
โปรดสังเกตว่ามีวงกลมเล็ก ๆ ที่แผ่ออกไป ณ สถานที่นั้นหรือสถานที่บนถนนที่ใกล้ที่สุด
ที่ด้านบนซ้ายของแผนที่จะมีช่องแสดงผลขนาดเล็กปรากฏขึ้นแสดงที่อยู่และพิกัดละติจูด / ลองจิจูด:
ในบางสถานที่ดูเหมือนว่าแผนที่จะใช้ค่าเริ่มต้นเป็นสถานที่บนถนนที่ใกล้ที่สุด แต่การทดสอบคุณสมบัติคลิกบนลิงก์จะปรากฏขึ้นเพื่อไปยังตำแหน่งที่แน่นอน
วิธีการก่อนหน้านี้ใช้งานไม่ได้อีกต่อไปตอนนี้คุณอาจได้รับพิกัดจาก URL (หมายเหตุ: มันเป็นพิกัดของสถานที่ที่กึ่งกลางของหน้าต่าง) โดยปกติแล้ว URL จะเป็นเช่นนี้ -
https://www.google.co.in/maps/preview#!data=!1m4!1m3!1d788!2d88.4328534!3d22.6145349
หรือ
https://www.google.co.in/maps/preview#!q=Statue+of+Liberty+National+Monument%2C+New+York%2C+NY%2C+United+States&data=!1m4!1m3!1d2588!2d-74.0440104!3d40.6907415!4m11!1m10!2i15!4m8!1m3!1d3152!2d88.4379395!3d22.5734607!3m2!1i1366!2i657!4f13.1
สังเกตdata
พารามิเตอร์ -
data=!1m4!1m3!1d788!2d88.4328534!3d22.6145349
data=!1m4!1m3!1d2588!2d-74.0440104!3d40.6907415
พิกัดสามารถมองเห็นได้ชัดเจน สำหรับครั้งแรกหนึ่งสำหรับคนที่สอง22.6145349, 88.4328534
40.6907415, -74.0440104
นี่อาจไม่ใช่วิธีที่ดีที่สุดในการดึงพิกัดจาก Google maps แต่มันเป็นเพียงวิธีเดียวเท่านั้นในตอนนี้
ฉันเพิ่งสร้างสคริปต์ tampermonkey เพื่อช่วยรับพิกัดจาก google maps ใหม่:
// ==UserScript==
// @name Google maps coordinates fetcher
// @namespace https://www.google.com/maps/preview
// @version 0.1
// @description This script shows the current coordinates of the center of the map in the new google maps
// @match https://www.google.com/maps/preview*
// @copyright 2013+, muddymind
// @require http://code.jquery.com/jquery-1.9.1.min.js
// ==/UserScript==
(function() {
//constants
var SCRIPT_DEBUG_PREFIX = "Google maps coordinates fetcher: ";
var DEBUG_ENABLED = true;
var X_COORDINATE_INDENTIFIER = "!3d";
var Y_COORDINATE_INDENTIFIER = "!2d";
var COORDINATES_REFRESH_RATE = 1000;
var DIV_CONTAINER_STYLE = "position: fixed; bottom: 20%; left: 0; background-color: white; width: auto; height: auto; padding: 10px; opacity: 0.6;";
//end of constants
//variables
var coordinatesContainer = undefined;
var previousCoordinateValue = "";
//end of variables
//auxiliar Classes and functions
function util_consoleDebug(message, obj){
if(DEBUG_ENABLED==true) {
console.debug( SCRIPT_DEBUG_PREFIX + message );
}
if(obj!=undefined){
console.debug( obj );
}
}
function getParameter(parameterName){
var url = window.location.href;
var val = url.match(parameterName+"[0-9\.-]*");
return val[0].substr(parameterName.length);
}
function updateCoordinates(){
util_consoleDebug("updating coordinates...");
try{
var result = getParameter(X_COORDINATE_INDENTIFIER);
result += ",";
result += getParameter(Y_COORDINATE_INDENTIFIER);
util_consoleDebug("current coordinates "+ result);
if(previousCoordinateValue != result){
coordinatesContainer.text(result);
previousCoordinateValue = result;
util_consoleDebug("coordinates updated to "+ result);
}
else{
util_consoleDebug("no update needed!");
//do nothing
}
}catch(Exception){
util_consoleDebug("error updating coordinates - " + Exception);
}
util_consoleDebug("scheduling next update after " + COORDINATES_REFRESH_RATE);
setTimeout(function(){updateCoordinates()}, COORDINATES_REFRESH_RATE);
}
//end of auxiliar Classes and functions
//settings
coordinatesContainer = $('<div style="' + DIV_CONTAINER_STYLE + '">');
$('body').append(coordinatesContainer);
//end of settings
//debug
util_consoleDebug("script inited!");
//end of debug
//main
updateCoordinates();
//end of main
})()
ฉันหวังว่านี่จะช่วยได้ ;)
เพิ่งพบสิ่งนี้ซึ่งอาจเป็นประโยชน์ในฐานะเครื่องมือเพื่อให้คุณสามารถรับพิกัดในรูปแบบ lat, long
หรือคุณสามารถใช้ตัวแปลงนี้ได้
คุณสามารถคลิกขวาที่ใดก็ได้บนแผนที่แล้วเลือก "What Here?" จากเมนู มันจะวางลูกศรสีเขียว วางเมาส์เหนือลูกศรสีเขียวเพื่อดูคำแนะนำเครื่องมือที่มีพิกัด คลิกที่ลูกศรสีเขียวเพื่อดูหน้าต่างป๊อปอัพที่มีพิกัด คุณสามารถคัดลอกข้อความจากหน้าต่างป๊อปอัป
What's Here?
พิกัดที่ได้รับการวางลงในช่องค้นหาแผนที่ที่ด้านบนของหน้า
https://maps.google.com/
และค้นหาที่อยู่และทำสิ่งนี้หรือเพียงแค่เริ่มการนำทางบนแผนที่ เมื่อฉันคลิกขวาและเลือก "นี่คืออะไร" ฉันได้รับพิกัด นอกจากนี้ยังได้ลองใน IE และใช้งานได้ ทำงานไม่ว่าฉันจะเข้าสู่ระบบ Google หรือไม่ คุณเรียกใช้ adblocker หรือส่วนเสริมอื่น ๆ ที่อาจรบกวน?