简体   繁体   中英

Bing Maps C# GPX Route Viewer won't compile: cannot convert from LocationCollection to LocationRect

The Bing Windows Store sample app "Bing Maps C# GPX Route Viewer" won't compile.

On this line of code:

LocationRect bestRouteView = new LocationRect(gpxRoutePoints);

...I get these two err msgs:

The best overloaded method match for 'Bing.Maps.LocationRect.LocationRect(Bing.Maps.LocationRect)' has some invalid arguments

Argument 1: cannot convert from 'Bing.Maps.LocationCollection' to 'Bing.Maps.LocationRect'

(gpxRoutePoints is a LocationCollection)

The sample you're using was recently updated to the RTM version of the Bing Maps SDK , and the constructor it's complaining about was introduced there. Install the SDK update and you should be fine.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM