C # request Baidu Map API query latitude and longitude to get rid of JS

Source: Internet
Author: User

public class Baiduposition
{
public int status {get; set;}

Public result result {get; set;}
}

public class Result
{
Public location location {get; set;}
public int precise {get; set;}
public int confidence {get; set;}
public string level {get; set;}
}

public class Location
{
public decimal LNG;
public decimal lat;
Public location (decimal x, decimal y)
{
LNG = x;
lat = y;
}
}

public static Class Baidumap
{
public static location Getsupplierlocation (string address)
{
Address + = "Shanghai City" + address;
String url = "http://api.map.baidu.com/geocoder/v2/?address=" + address + "&output=json&ak= XBPX8DMIUAZLUWEOTTAZSCECPKXKLUDV ";
var response = webhelper.httpwebrequest (URL, string. Empty, Encoding.UTF8, false);
Decimal LNG = 0, lat = 0;

var position = json.toobject<baiduposition> (response);
if (position! = NULL && Position.status = = 0 && Position.result! = null && position.result.locatio n! = null)
{
LNG = POSITION.RESULT.LOCATION.LNG;
lat = Position.result.location.lat;
}

return new location (LNG, LAT);
}
}

C # request Baidu Map API query latitude and longitude to get rid of JS

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.