Android guide bee map development example: address anti-Encoding

Source: Internet
Author: User

The address anti-code is used to query the corresponding place names through latitude and longitude. The following example shows the place names corresponding to latitude and longitude 118.777802 and 32.061699. The result is "41, yuanshengxiang, Gulou District, Nanjing City, Jiangsu Province, China ".

[Java]
Package com. pstreets. gisengine. demo;

Import com. mapdigit. gis. DigitalMap;
Import com. mapdigit. gis. MapPoint;
Import com. mapdigit. gis. geometry. GeoLatLng;
Import com. mapdigit. gis. service. IReverseGeocodingListener;
Import com. mapdigit. gis. service. IpAddressLocation;
Import com. pstreets. gisengine. R;
Import com. pstreets. gisengine. SharedMapInstance;

Import android. app. Activity;
Import android. OS. Bundle;
Import android. view. Menu;
Import android. view. MenuInflater;
Import android. view. MenuItem;

Public class MapReverseGeocoding extends Activity implements
IReverseGeocodingListener {

@ Override
Public void onCreate (Bundle savedInstanceState ){
Super. onCreate (savedInstanceState );
SetContentView (R. layout. main );
}

@ Override
Public void onStart (){
Super. onStart ();
GeoLatLng center = new GeoLatLng (32.0616667, 118.7777778 );
SharedMapInstance. map. setCenter (center, 15,
Com. mapdigit. gis. raster. MapType. MICROSOFTCHINA );
SharedMapInstance. map. setReverseGeocodingListener (this );

}

@ Override
Public boolean onCreateOptionsMenu (Menu menu ){
MenuInflater inflater = getMenuInflater ();
Inflater. inflate (R. menu. mapgeocoding_menu, menu );
Return true;
}

@ Override
Public boolean onOptionsItemSelected (MenuItem item ){
// Handle item selection
Switch (item. getItemId ()){
Case R. id. findaddress:
SharedMapInstance. map. getReverseLocations ("32.061699, 118.777802 ");
Return true;

Default:
Return super. onOptionsItemSelected (item );
}

}
Www.2cto.com
@ Override
Public void done (String arg0, MapPoint [] result ){
If (result! = Null ){
SharedMapInstance. map. panTo (result [0]. getPoint ());
}
}

@ Override
Public void readProgress (int bytes, int total ){

}

}
Package com. pstreets. gisengine. demo;
 
Import com. mapdigit. gis. DigitalMap;
Import com. mapdigit. gis. MapPoint;
Import com. mapdigit. gis. geometry. GeoLatLng;
Import com. mapdigit. gis. service. IReverseGeocodingListener;
Import com. mapdigit. gis. service. IpAddressLocation;
Import com. pstreets. gisengine. R;
Import com. pstreets. gisengine. SharedMapInstance;
 
Import android. app. Activity;
Import android. OS. Bundle;
Import android. view. Menu;
Import android. view. MenuInflater;
Import android. view. MenuItem;
 
Public class MapReverseGeocoding extends Activity implements
IReverseGeocodingListener {
 
@ Override
Public void onCreate (Bundle savedInstanceState ){
Super. onCreate (savedInstanceState );
SetContentView (R. layout. main );
}
 
@ Override
Public void onStart (){
Super. onStart ();
GeoLatLng center = new GeoLatLng (32.0616667, 118.7777778 );
SharedMapInstance. map. setCenter (center, 15,
Com. mapdigit. gis. raster. MapType. MICROSOFTCHINA );
SharedMapInstance. map. setReverseGeocodingListener (this );
 
}
 
@ Override
Public boolean onCreateOptionsMenu (Menu menu ){
MenuInflater inflater = getMenuInflater ();
Inflater. inflate (R. menu. mapgeocoding_menu, menu );
Return true;
}
 
@ Override
Public boolean onOptionsItemSelected (MenuItem item ){
// Handle item selection
Switch (item. getItemId ()){
Case R. id. findaddress:
SharedMapInstance. map. getReverseLocations ("32.061699, 118.777802 ");
Return true;
 
Default:
Return super. onOptionsItemSelected (item );
}
 
}
 
@ Override
Public void done (String arg0, MapPoint [] result ){
If (result! = Null ){
SharedMapInstance. map. panTo (result [0]. getPoint ());
}
}
 
@ Override
Public void readProgress (int bytes, int total ){
 
}
 
}

 

Note that when the string latitude and longitude format is used, the latitude is in the front, and the longitude is in the back. If the longitude is reversed, the returned place names may be empty or all of them will be transferred to a foreign country. The result is also an array, generally to the first result, followed by a larger area or a relatively distant place name.

Author: mapdigit
 
 

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.