Hello Robert,
I have seen you added signature code etc. Will have to give this a shot soon! The only thing I do not know is how to create a marker with a javascript or jQuery request/code.
Could you let me know how I would do the below POST request with jQuery or javascript?
That would be great! Thanks,
Sascha
Add new marker, title Headquarter, geocode Main Street 1 Washington:
<form action="https://your-domain/wp-content/plugins/leaflet-maps-marker-pro/leaflet-api.php" method="POST">
<input type="hidden" name="key" value="YOUR_PUBLIC_KEY"/>
<input type="hidden" name="signature" value="YOUR_SIGNATURE"/>
<input type="hidden" name="expires" value="YOUR_EXPIRE_VALUE"/>
<input type="text" name="action" value="add"/>
<input type="text" name="type" value="marker"/>
<input type="text" name="markername" value="Headquarters"/>
<input type="text" name="geocode" value="Main Street 1 Washington"/>
<input type="submit" name="submit" value="submit"/>
</form>