delahaye / dlh_googlemaps

Google Maps Extension für Contao
20 stars 26 forks source link

Support for snazzy maps #82

Closed cgpro closed 6 years ago

cgpro commented 6 years ago

Feature request :)

It would be nice to have a new field "Snazzy configuration" or "Colour configuration" after the field "Additional declarations", in the map configuration. Maybe with link to the snazzy website in the field hint?

The output could be placed after the center attribute in the file ce_dlh_googlemaps_default.html5 (after line 16).

, styles: [ ... snazzy config ]

Example config: https://snazzymaps.com/style/25/blue-water

delahaye commented 6 years ago

You can already use this. Just paste the given Javascript style array in the config field for additional parameters writing 'styles:' just before it. E.g.:

styles:[
    {
        "featureType": "landscape",
        "elementType": "all",
        "stylers": [
            {
                "color": "#ff0000"
            }
        ]
    }
]
cgpro commented 6 years ago

Ah, tried it, but without "styles:", thanks! :)