Custom Backend data for map to JSON file?

Use the JSON REST API – http://v2.wp-api.org – It lives as a plugin now but will eventually be part of WP Core – https://wordpress.org/plugins/rest-api/ To manually output JSON, use a combination of wp-ajax to handle requests and wp_json_encode() / wp_send_json_success for simple PHP Objects and Arrays. See https://codex.wordpress.org/AJAX_in_Plugins

How to build a map with markers from single posts?

Since your blog runs on wordpress.com, your options are limited. In order to render the map, you need the data in some form that the map can process it. Either addresses or geocodes. In order to generate the map dynamically without manual interference, these data need to be saved with the post, and somehow retrieved. … Read more

Map clashing with WP – suggestions on fix? [closed]

If you’re using FireBug for FireFox or the Google Chrome Developer Tools (both available on Win via [F12]-key), then you can see that you’re missing ressources (404) via your Console Tab in the tool bar: Failed to load resource: the server responded with a status of 404 (Not Found) The list of “missing” files: tooltip.css … Read more