showGeoAnalytics method

Future<void> showGeoAnalytics({
  1. required MapmyIndiaGeoAnalyticsType type,
  2. required String geoboundType,
  3. String? attribute,
  4. required List<MapmyIndiaGeoAnalyticsRequest> geobound,
  5. required List<String> propertyNames,
  6. String? query,
  7. bool? transparent,
})

Implementation

Future<void> showGeoAnalytics(
    {required MapmyIndiaGeoAnalyticsType type,
    required String geoboundType,
    String? attribute,
    required List<MapmyIndiaGeoAnalyticsRequest> geobound,
    required List<String> propertyNames,
    String? query,
    bool? transparent}) async {
  return await _mapboxGlPlatform.showGeoAnalytics(type, geoboundType,
      attribute, propertyNames, geobound, query, transparent);
}