fluttermapbox

flutter: How to remove mapbox logo


I am using mapbox on my application, When Map is shown, the mapbox logo is shown :

enter image description here

How can I remove logo?

MapboxMap(
                  accessToken: MAPBOX_TOKEN,
                  initialCameraPosition: CameraPosition(
                    target: controller.center.value,
                    zoom: 8.0,
                  ),
                  onMapCreated: (ctl) => controller.mapController = ctl,

Solution

  • As per their website

    The Mapbox logo is a small image containing the stylized word "Mapbox". It typically resides on the bottom left corner of a map. While you may move the logo to a different corner of the map, we require the Mapbox logo to appear on our maps so that Mapbox and its maps get proper credit.

    So no, you should not remove the Mapbox logo. This is the same for Google maps aswell.