LWUIT引路蜂地图开发示例:本地查询

jerry 2015年11月26日 收藏

本地查询可以查询指定区域内诸如宾馆,邮局等用户感兴趣的地方。其使用方法和地址查询非常类似。
下面示例查询32.0616667, 118.7777778为中心点一定区域内宾馆的信息。

  1. package com.pstreets.gisengine.demo.lwuit;
  2.  
  3. //--------------------------------- IMPORTS ------------------------------------
  4.  
  5. import com.mapdigit.gis.MapPoint;
  6.  
  7. import com.mapdigit.gis.geometry.GeoLatLng;
  8. import com.mapdigit.gis.raster.MapType;
  9.  
  10. import com.mapdigit.gis.service.IGeocodingListener;
  11. import com.pstreets.gisengine.demo.MapDemoLWUIT;
  12. import com.sun.lwuit.Command;
  13. import com.sun.lwuit.events.ActionEvent;
  14.  
  15. public class MapLocalSearchLWUIT extends MapDemoLWUIT
  16.         implements IGeocodingListener{
  17.  
  18.     private Command mapFindAddressCommand;
  19.  
  20.     public void startApp() {
  21.         init();
  22.         canvas.setTitle("Local Search");
  23.  
  24.         mapFindAddressCommand=new Command("Find Address"){
  25.             public void actionPerformed(ActionEvent evt) {
  26.                 String name = "宾馆";
  27.                 GeoLatLng screenCenter = map.getScreenCenter();
  28.                 map.getLocations(name, 0, screenCenter,
  29.                   map.getScreenBounds(screenCenter));
  30.  
  31.             }
  32.         };
  33.         canvas.addCommand(mapFindAddressCommand);
  34.         GeoLatLng center =  new GeoLatLng(32.0616667, 118.7777778);
  35.         map.setCenter(center, 13, MapType.MICROSOFTCHINA);
  36.         map.setGeocodingListener(this);
  37.  
  38.         canvas.show();
  39.     }
  40.  
  41.     public void done(String query, MapPoint[] result) {
  42.         if (result != null) {
  43.             map.panTo(result[0].getPoint());
  44.             for (int i = 0; i < result.length; i++) {
  45.                 System.out.println(result[i].objectNote);
  46.             }
  47.         }
  48.     }
  49. }

本地查询方法
public void getLocations(String address,int start,GeoLatLng center,GeoBounds bound, IGeocodingListener listener);
指定中心点和查询区域。本地查询可以多次返回结果,start为查询结果起始顺序,每次返回结果在SearchOptions 中定义,缺省每次返回4个。
上述结果返回内容为,具体结果可能不同。
“晶丽酒店025-83310818 025-83310818212223 025-86636636 ”
“城市名人酒店025-83123333 025-83123888 ”
“南京玄武饭店 025-83358888 ”
“Sofitel Galaxy Nanjing – 南京索菲特银河大酒店025-83718888 “