Skip to main content

BingElevationDataProvider.RequestPointsElevations(List<GeoPoint>) Method

Requests elevations of the set of geographical points.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v23.2.dll

NuGet Package: DevExpress.Wpf.Map

Declaration

public void RequestPointsElevations(
    List<GeoPoint> points
)

Parameters

Name Type Description
points List<GeoPoint>

A list of the GeoPoint objects specifying the set of geographical points.

Example

This example demonstrates how to receive elevation data from the Bing Map Service.

To do this, request the required elevation information using the BingElevationDataProvider.RequestPointsElevations method.

<Window
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:BingElevationDataWpf"
        xmlns:dxm="http://schemas.devexpress.com/winfx/2008/xaml/map" x:Class="BingElevationDataWpf.MainWindow"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525" Loaded="OnLoaded">
    <Grid>

        <dxm:MapControl ZoomLevel="3" FontSize="7">
            <dxm:MapControl.CenterPoint>
                <dxm:GeoPoint Longitude="-100" Latitude="30"/>
            </dxm:MapControl.CenterPoint>
            <dxm:ImageLayer>
                <dxm:BingMapDataProvider BingKey="INSERT_YOUR_BING_KEY"/>
            </dxm:ImageLayer>
            <dxm:InformationLayer>
                <dxm:BingElevationDataProvider x:Name="provider" BingKey="INSERT_YOUR_BING_KEY"/>
            </dxm:InformationLayer>
        </dxm:MapControl>
    </Grid>
</Window>
See Also