Guest User

Untitled

a guest
Aug 16th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. using AzureMapsLite;
  2.  
  3. AzureMaps azureMaps = new AzureMaps("<Your Azure Maps key>");
  4.  
  5. TrafficFlowSegmentResult trafficFlowSegmentResult = await azureMaps.GetTrafficFlowSegmentAsync(BasicGeoposition position, double zoomlevel, TrafficFlowSegmentStyle style, SpeedUnit unit, double? thickness, bool? openLr);
  6.  
  7. BitmapImage mapImage = await azureMaps.GetTrafficFlowTileAsync(TrafficFlowTileStyle style, int zoomlevel, int x, int y, int thickness);
  8.  
  9. TrafficIncidentDetailResult trafficIncidentDetailResult = await azureMaps.GetTrafficIncidentDetail(string boundingbox, double boundingZoom, string trafficmodelid, TrafficIncidentDetailStyle style,
  10. string language, string projection, IncidentGeometryType geometries, bool? expandCluster, bool? originalPosition);
  11.  
  12. BitmapImage mapImage = await azureMaps.GetTrafficIncidentTileAsync(TrafficFlowTileStyle style, int zoomlevel, int x, int y, string t);
  13.  
  14. TrafficIncidentViewportResult trafficIncidentViewportResult = await azureMaps.GetTrafficIncidentViewport(string boundingbox, double boundingZoom, string overviewbox, double overviewZoomlevel);
Add Comment
Please, Sign In to add comment