Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Labeled Places.json format
Saved Places format: ```json {'geometry': {'coordinates': [...], 'type': 'Point'}, 'properties': {'Google Maps URL': '...', 'Location': {'Address': '...', 'Business Name': '...', 'Country Code': 'US', 'Geo Coordinates': {'Latitude': '...', 'Longitude': '...'}}, 'Published': '2018-05-02T01:46:02Z', 'Title': '...', 'Updated': '2018-05-02T01:46:02Z'}, 'type': 'Feature'} ``` Labeled Places format: ```json {'geometry': {'coordinates': [...], 'type': 'Point'}, 'properties': {'address': '...', 'name': 'Home'}, 'type': 'Feature'} ```
- Loading branch information