dev-master
9999999-devAdd a mapbox to silverstripe pages
BSD-3-Clause
leaflet silverstripe mapbox
Add a mapbox to silverstripe pages
Add a Mapbox map to your Silverstripe pages., (*1)
Simply install the moduel by requireing it in you composer.json or by running:, (*2)
composer require "xddesigners/silverstripe-mapbox"
Then add the controller extension to the page you want the map to show and configure the basic properties:, (*3)
HomePagecontroller: extensions: - XD\MapBox\MapBox XD\MapBox\MapBox: access_token: 'YOUR_MAPBOX_ACCESS_TOKEN' style: 'YOUR_MAPBOX_STYLE'
The map can be configured and optionally be configured to hold an icon, the sintax follows the leaflet configuration, any option that you can pass there is passable here. All set options will be combined to a json object., (*4)
XD\MapBox\MapBox: map_options: dragging: false zoomControl: false scrollWheelZoom: false icon_options: iconUrl: 'path/to/the.icon' iconSize: - 50 - 50 iconAnchor: - 25 - 50
To center the map to a location you need to add the method mapBoxMarkers()
to the model that holds the MapBox extension. This method needs to return an array with at least one location to center the map on. If using multiple markers you can set the config setting fit_bounds_to_markers
to true so all markers will be displayed on the map., (*5)
A interface is available for models that use the extension, just add implements UseMapBox
to your class to force the method., (*6)
Copyright (c) 2016, XD designers All rights reserved., (*7)
All rights reserved., (*8)
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:, (*9)
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL
Add a mapbox to silverstripe pages
BSD-3-Clause
leaflet silverstripe mapbox