Download the PHP package sylvainjule/mapnotator without Composer
On this page you can find all versions of the php package sylvainjule/mapnotator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download sylvainjule/mapnotator
More information about sylvainjule/mapnotator
Files in sylvainjule/mapnotator
Package mapnotator
Short Description Annotate maps in Kirby by drawing markers, paths and shapes.
License MIT
Informations about the package mapnotator
Kirby Mapnotator
Annotate maps and generate GeoJSON in Kirby by drawing markers, paths and shapes.
Overview
This plugin is completely free and published under the MIT license. However, if you are using it in a commercial project and want to help me keep up with maintenance, please consider making a donation of your choice through GitHub Sponsors or Paypal or purchasing your license(s) through my affiliate link.
- 1. Installation
- 2. Setup
- 3. Tile-servers
- 3.1. Open-source / free tiles
- 3.2. Mapbox tiles
- 4. Geocoding service
- 4.1. Open-source API (Nominatim)
- 4.2. Mapbox API
- 5. Per-field options
- 6. Global options
- 7. Front-end usage
- 8. Credits
- 9. License
1. Installation
Download and copy this repository to
Alternatively, you can install it with composer:
2. Setup
Out of the box, the field is set to use open-source services both for geocoding (Nominatim) and tiles-rendering (Positron), without any API-key requirements.
Keep in mind that these services are bound by strict usage policies, always double-check if your usage is compatible. Otherwise, please set-up the field to use Mapbox, see details below.
3. Tile-servers
3.1. Open-source / free tiles
You can pick one of the 4 free tile servers included:
→ Public usage is now forbiddenwikimedia
(Terms of Use)openstreetmap
(Terms of Use)positron
(default, Terms of Use [Under Free Basemaps Terms of Service])voyager
(Terms of Use [Under Free Basemaps Terms of Service])
You can also set this globally in your installation's main config.php
, then you won't have to configure it in every blueprint:
3.2. Mapbox tiles
mapbox.outdoors→mapbox/outdoors-v11
(default mapbox theme)mapbox.streets→mapbox/streets-v11
mapbox.light→mapbox/light-v10
mapbox.dark→mapbox/dark-v10
In case your usage doesn't fall into the above policies (or if you don't want to rely on those services), you can set-up the field to use Mapbox' tiles.
You will have to set both the id
of the tiles you want to use and your mapbox public key
in your installation's main config.php
:
You can now explicitely state in your blueprint that you want to use Mapbox tiles:
You can also set this globally in your installation's main config.php
, then you won't have to configure it in every blueprint:
4. Geocoding services
4.1. Open-source API (Nominatim)
This is the default geocoding service. It doesn't require any additional configuration, but please double-check if your needs fit the Nominatim Usage Policy.
4.2. Mapbox API
In case your usage doesn't fall into the above policy (or if you don't want to use Nominatim), you can set-up the field to use Mapbox API.
If you haven't already, you will have to set your mapbox public key
in your installation's main config.php
:
You can now explicitely state in your blueprint that you want to use Mapbox as a geocoding service:
With Mapbox API comes the ability to autocomplete your search. It is activated by default, you can deactivate it by setting the autocomplete
option to false
.
You can also set this globally in your installation's main config.php
, then you won't have to configure it in every blueprint:
5. Per-field options
5.1. center
The coordinates of the center of the map, if the field has no stored value. Default is {lat: 48.864716, lon: 2.349014}
(Paris, FR).
Once the field has at least one shape drawn, it will automatically find its initial center in order to display all the shapes.
5.2. zoom
The min
, default
and max
zoom values, where default
will be the one used on every first-load of the map. Default is: {min: 2, default: 12, max: 18}
.
Once the field has at least one shape drawn, it will automatically find its initial zoom level in order to display all the shapes.
5.3. shapes
The shapes your editors are allowed to draw on the map. They are all activated by default:
5.4. tools
The tools / shape modifiers your editors are allowed ot use. They are all activated by default:
5.5. size
The height of the field. Default is full
, which will make the field fill the entire height of the viewport. Options are:
full
(entire viewport height)large
(fits all buttons in the toolbar)medium
(fits 8 buttons in the toolbar)small
(fits 6 buttons in the toolbar)
5.6. color
You can change the shapes / markers color by setting this option to any valid color value. Default it blue (#2281f7
).
6. Global options
The same options are available globally, which means you can set them all in your installation's config.php
file and don't worry about setting it up individually afterwards:
7. Front-end usage
The GeoJSON is stored as YAML and therefore needs to be decoded with the yaml
method.
You can then encode it to JSON using Kirby's toolkit:
7.1. circle and circleMarker
The GeoJSON syntax doesn't support circles or circleMarkers. They are stored as a point by default (see this Medium post for more details).
Therefore, the field stores additionnal properties alongside their coordinates, to allow you to recreate them in your projects:
When importing the GeoJSON into your project, you will need to check for those properties in order to transform them into the appropriate shapes. With Leaflet, for example, it would look like:
8. Credits
Services:
- Openstreetmap, Carto or Mapbox as tile servers.
- Nominatim or Mapbox Search as a geocoding API
- Leaflet as a mapping library.
- Geoman as a GeoJSON editor.
9. License
MIT