Skip to main content
All docs
V25.1
  • VectorMapAnnotationConfigBuilder.Coordinates(IEnumerable<Double>) Method

    Positions the annotation's center at specified geographic coordinates: [longitude, latitude]. Mirrors the client-side coordinates option.

    Namespace: DevExtreme.AspNet.Mvc.Builders

    Assembly: DevExtreme.AspNet.Core.dll

    Declaration

    public VectorMapAnnotationConfigBuilder Coordinates(
        IEnumerable<double> value
    )

    Parameters

    Name Type Description
    value IEnumerable<Double>

    The option value.

    Returns

    Type Description
    VectorMapAnnotationConfigBuilder

    A reference to this instance after the method is called.

    Remarks

    Use the following notation to set the option’s value:

    @(Html.DevExtreme().VectorMap()
        .Annotations(annotations => {
            annotations.Add().Coordinates(new double[] {-75.4999, 43.00035});
        })
    )
    
    See Also