Get West/East | North/South from GPS coordinates from Google API

吃可爱长大的小学妹 提交于 2020-07-23 18:02:51

问题


I have Lat & Long. How can i get West/East | North/South from GPS?

Screenshot attached: ScreenShot

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>

<script type="text/javascript" src="/design/js/jquery-autocomplete/jquery.autocomplete_geomod.js"></script>

<script type="text/javascript" src="/design/js/jquery-autocomplete/geo_autocomplete.js"></script>
<link rel="stylesheet" type="text/css" href="/design/js/jquery-autocomplete/jquery.autocomplete.css" />

<script type="text/javascript">
$().ready(function() {

    var latlng = new google.maps.LatLng(-34.397, 150.644);
    var myOptions = {
      zoom: 8,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    // use all the autocomplete options as documented at http://docs.jquery.com/Plugins/Autocomplete
    /* additional geo_autocomplete options:
        mapkey : 'ABQ...' (required for Static Maps thumbnails, obtain a key for your site from http://code.google.com/apis/maps/signup.html)
        mapwidth : 100
        mapheight : 100
        maptype : 'terrain' (see http://code.google.com/apis/maps/documentation/staticmaps/#MapTypes)
        mapsensor : true or false
    */
    $('#location').geo_autocomplete(new google.maps.Geocoder, {
        mapkey: 'ABQIAAAAbnvDoAoYOSW2iqoXiGTpYBTIx7cuHpcaq3fYV4NM0BaZl8OxDxS9pQpgJkMv0RxjVl6cDGhDNERjaQ', 
        selectFirst: false,
        minChars: 3,
        cacheLength: 50,
        width: 300,
        scroll: true,
        scrollHeight: 330
    }).result(function(_event, _data) {

    var coords = new google.maps.LatLng(
                        _data.geometry.location.lat(),
                        _data.geometry.location.lng()
                    );

        $('#lat').val (_data.geometry.location.lat())
        $('#lng').val (_data.geometry.location.lng())


        console.log (coords.lat () + '/' + coords.lng ());

        if (_data) map.fitBounds(_data.geometry.viewport);
    });

});
</script>
<style>
.ac_results li img {
    float: left;
    margin-right: 5px;
}
</style>

<h3><a href="http://code.google.com/p/geo-autocomplete">jQuery geo-autocomplete Plugin</a> Demo</h3>

<div>Location: <input type="text" id="location" /> (autocomplete)</div>
<br/>
<div id="coords">Lat: 
    <input id="lat" name="lat" />
    Lng: 
    <input id="lng" name="lng" />
</div>
<br/>


回答1:


East/West: if longitude < 0 then West, else East
North/South: if latitude < 0 then South else North

Explanation:
The 0-Meridian (through London/Greenwich) is the limit between west and east.
The Aequator is the limit between south and north.

in Google, coordinates are represented in decimal degrees, where the negative sign, defines E/W or N/S



来源:https://stackoverflow.com/questions/17419677/get-west-east-north-south-from-gps-coordinates-from-google-api

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!