我有一个HTML5表单,它使用geolocator脚本填充带有lat / long&的文本框。从平板电脑GPS升高。使用WGS84数据返回数据,但用于存储表单数据的数据库需要NAD83数据。
是否有一个脚本会在填充字段之前将默认WGS84数据转换为NAD83,或者是否所有数据都必须进行后处理?
<fieldset>
<div> Latitude: <input type="text" id="lat" name="lat" ></div>
<div>Longitude: <input type="text" id="long" name="long" value=""></div>
<div><label><input type="text" id="acc" name="long" value="" data-mini="true"></label>
<button onclick="getLocationConstant()" value="Get Location" data-mini="true"></button>
</div>
<script>
function getLocationConstant()
{
if(navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(onGeoSuccess,onGeoError);
} else {
alert("Your browser or device doesn't support Geolocation");
}
}
// If we have a successful location update
function onGeoSuccess(event)
{
document.getElementById("lat").value = event.coords.latitude;
document.getElementById("long").value = event.coords.longitude;
document.getElementById("height").value = event.coords.altitude;
document.getElementById("acc").value = event.coords.accuracy +"% accuracy";
}
// If something has gone wrong with the geolocation request
function onGeoError(event)
{
alert("Error code " + event.code + ". " + event.message);
}
</script>
<div>Elevation: <input type="text" name="height" id="height"></div>
</fieldset>
答案 0 :(得分:0)
在不同基准或投影之间进行转换的公式过于复杂。
有一个开源项目Proj4(javascript版)可以做你想要的关于地图投影的每件事。你可以从:
获得它