dd

Windows Mobile引路蜂地图开发示例:选择地图服务

jerry 地图开发 2015年11月26日 收藏

引路蜂地图服务缺省使用Google地图服务,但你也可以选择其它地图服务,比方说当Google服务离线时,您可以选择MapAbc的地图服务,另外要注意的是中国地图是有偏移的。如果想使用无偏移的中国地图,一是采用地图偏移校正算法,另外一个是使用CloudMade地图服务。
所前所述,引路蜂地图开发包在设计时将地图图片显示和地图服务两部分设计成相对独立的两部分,Google中国地图图片,Bing中国地图图片,MapAbc中国地图图片是有偏移的地图图片,CloudMade(OpenStreet)中国地图图片是无偏移的。而Google中国地图服务,MapAbc中国地图服务是有偏移,CloudMade地图服务是无偏移的。所以在选择地图类型和地图服务类型时,要么都选择有偏移,要么都选择无偏移。否则地图在显示路径时或地址时就不匹配。 

 下面列表是合法的组合:

地图类型 MapType   地图服务类型 (DigitalMapService) 
GOOGLECHINA  GOOGLE_MAP_SERVICE 
MICROSOFTCHINA  GOOGLE_MAP_SERVICE 
MAPABCCHINA  GOOGLE_MAP_SERVICE 
OPENSTREETMAP  CLOUDMADE_MAP_SERVICE 
GOOGLECHINA  MAPABC_MAP_SERVICE 
MICROSOFTCHINA  MAPABC_MAP_SERVICE 
MAPABCCHINA  MAPABC_MAP_SERVICE 

下述示列地图类型使用MICROSOFTCHINA,而使用不同的地图服务时路径查询的情况。(南京到天津的路径) 。

private void GetDirection()
{
 GeoLatLng latLng1 = new GeoLatLng(32.0418381, 118.7788905);
 GeoLatLng latLng2 = new GeoLatLng(39.11643, 117.180908);
 _rasterMap.GetDirections(new GeoLatLng[] { latLng1, latLng2 });
}

private void mnuServiceType_Google_Click(object sender, EventArgs e)
{
 _rasterMap.SetCurrentMapService(DigitalMapService.GoogleMapService);
 _rasterMap.SetRoutingListener(this);
 GetDirection();
}

private void mnuServiceType_MapAbc_Click(object sender, EventArgs e)
{
 _rasterMap.SetCurrentMapService(DigitalMapService.MapabcMapService);
 _rasterMap.SetRoutingListener(this);
 GetDirection();
}

private void mnuServiceType_CloudMade_Click(object sender, EventArgs e)
{
 _rasterMap.SetCurrentMapService(DigitalMapService.CloudmadeMapService);
 _rasterMap.SetRoutingListener(this);
 GetDirection();
}


上图分别为三种地图服务返回的路径,Google 地图服务和MapAbc地图服务返回的结果基本相同,实际上Google 地图服务在中国的地图是来自于MapAbc。而CloudMade地图返回的结果似乎偏移了道路。这是因为Bing 中国地图是被偏移过的,而CloudMade返回的无偏移的结果。Google 地图服务和MapAbc地图服务返回的结果也是偏移过的,所以和偏移过的地图很“匹配”。

dd