Skip to content

laurens/kirby-geolocation-field

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Geolocation for Kirby 2

This is a custom field for Kirby that adds a Google Map with draggable marker. Marker position is saved to input field. GeoCoder is used to search for address entries.

Installation

Download the files and put them in a folder named geolocation, inside the /site/fields folder. If the fields folder doesn't exist, create it.

How to use it

In your blueprint add the following field:

fields:
  location:
    label: Location
    type: geolocation

In your template you can use the field like:

<?php echo $page->location(); ?>

Troubleshooting

1. The map doesn't show in the panel

  • Make sure to use 'location' as fieldname in your blueprint or change the selector in geolocation.js accordingly. (See issue #2)

  • Make sure to refresh the panel after changing your blueprint. (See issue #3)

2. The latitude and longtitude show as one string in my template

Due to limitations in the Kirby core you need to split the string yourself in the template. (See issue #1)

3. Your plugin doesn't work with plugin x and y

The plugin should work with the most recent version of Kirby. If you've found a bug with the plugin please create a new issue. I can't guarantee the plugin works with other Kirby plugins. If you run into issues try to reach out to the other plugin creator as well. Maybe we can work something out.

4. Can you add feature x?

In short: no. The plugin is provided as is. Please feel free to fork or create a pull request with your changes.

Example

Example of Geolocation

About

Geolocation panel field for Kirby 2

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 60.0%
  • PHP 30.2%
  • CSS 9.8%