elevationAt method

int? elevationAt(
  1. double latitude,
  2. double longitude
)

Only for HillshadingRenderer

Implementation

int? elevationAt(double latitude, double longitude) {
  return HgtFile.ocean;
  //return hgtFile.elevationAt(latitude, longitude);
}