Hide Pan / Zoom 'Camera controls' on Google Map

I’m trying to hide just the ‘camera controls’ on a map component. I only want to display the simple +/- zoom buttons.

image

I’ve tried using the various control options that are presented through the anvil maps api, and I’ve also tried to work out how to set the option according to the Google maps docs (cameraControl = False) but nothing has come good yet :slight_smile:

self.map_1.zoom_control = False just removes the +/- buttons, but leaves the camera control in place.

Ah ha - thank you rubber :duck:s :slight_smile:

It looks like I can achieve what I want like this:

    self.map_1.disable_default_ui = True
    self.map_1.street_view_control = False

It does feel like an explicit property in the anvil map API for camera_control would be useful to complete the existing set though :slight_smile: