Home > Net >  flutter: How to remove mapbox logo
flutter: How to remove mapbox logo

Time:10-27

I am using 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,

CodePudding user response:

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.

  • Related