Data structure which describes the geographical view of a MapChart.

Can be received via onViewChange method.

Hierarchy

  • MapChartView

Properties

latitudeRange: {
    end: number;
    start: number;
}

Displayed latitude range (north-south position).

Type declaration

  • end: number
  • start: number
longitudeRange: {
    end: number;
    start: number;
}

Displayed longitude range (east-west position).

Type declaration

  • end: number
  • start: number
margin: {
    bottom: number;
    left: number;
    right: number;
    top: number;
}

Margins around Map chart edges as pixels.

Type declaration

  • bottom: number
  • left: number
  • right: number
  • top: number