FieldtypeMapMarker
FieldtypeMapMarker copied to clipboard
Fieldtype for ProcessWire - holds an address or location name, and automatically geocodes the address to latitude/longitude using Google Maps API.
It's impossible to save a page with a MM field in PHP 8 because of this error: 
When determining if the inputfield is empty or not (to determine visibility depending on the setting) [the test](https://github.com/ryancramerdesign/FieldtypeMapMarker/blob/917edef8efe92bf8bdbdff62b66f6eca581ca57e/InputfieldMapMarker.module#L75) says that if the lat value === 0.0 then the inputfield is...
As Google merged a few of their APIs together (specifically Maps) there is now a console error being thrown when choosing a location on the backend. 'Geocoding Service: This API...
Currently the Latitude and Longitude inputs show greater decimal length than their database column type allows them to store accurately. This is confusing for users, because they can see a...
If users are entering Lat/Lng values into the inputs it would be good if the marker was moved and the map redrawn to reflect those values. In InputfieldMapMarker.js: ````js $lat.add($lng).change(function()...
The map does not work on the frontend as the key is missing. Suggest in the instructions it mentions adding the tag: `
If the Map Marker inputfield is AJAX-loaded (e.g. in a repeater, or because field visibility setting) then the map does not initialise. ### Suggested fix Add to InputfieldMapMarker.js: ```js $(document).on('reloaded',...
I found these options in MarkupGoogleMap.module but they are not in the actual README.md so can easily be missed: ``` * // use hover box? When true, shows a tooltip-type...