gitextract_o1ic_4j1/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── craft-3-issue.md │ │ └── craft-4-issue.md │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── docs/ │ ├── .docs.json │ ├── geolocation/ │ │ ├── get.md │ │ └── redirect.md │ ├── getting-started/ │ │ ├── config.md │ │ ├── installation.md │ │ └── usage.md │ ├── how-to/ │ │ ├── graphql.md │ │ └── search.md │ ├── index.md │ └── rendering/ │ ├── embed.md │ └── static.md ├── resources/ │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── src/ │ │ ├── App.vue │ │ ├── common/ │ │ │ └── Geo.js │ │ ├── components/ │ │ │ ├── Address.vue │ │ │ ├── Fragment.vue │ │ │ ├── Input.vue │ │ │ ├── Label.vue │ │ │ ├── Map.vue │ │ │ └── Search.vue │ │ ├── enums/ │ │ │ ├── GeoService.js │ │ │ └── MapTiles.js │ │ ├── filters/ │ │ │ └── craft.js │ │ ├── helpers/ │ │ │ ├── createW3WGrid.js │ │ │ ├── debounce.js │ │ │ └── waitForGlobal.js │ │ ├── main.js │ │ └── models/ │ │ ├── Parts.js │ │ └── PartsLegacy.js │ └── vue.config.js └── src/ ├── SimpleMap.php ├── acfadapters/ │ └── GoogleMap.php ├── config.php ├── controllers/ │ ├── SettingsController.php │ └── StaticController.php ├── enums/ │ ├── GeoService.php │ └── MapTiles.php ├── fields/ │ └── MapField.php ├── integrations/ │ ├── feedme/ │ │ └── FeedMeMaps.php │ └── graphql/ │ ├── MapPartsType.php │ └── MapType.php ├── jobs/ │ └── MaxMindDBDownloadJob.php ├── migrations/ │ ├── Install.php │ ├── m190226_143809_craft3_upgrade.php │ ├── m190325_130533_repair_map_elements.php │ ├── m190712_104805_new_data_format.php │ └── m190723_105637_fix_map_field_column_type.php ├── models/ │ ├── BaseLocation.php │ ├── EmbedOptions.php │ ├── Map.php │ ├── Marker.php │ ├── Parts.php │ ├── PartsLegacy.php │ ├── Point.php │ ├── Settings.php │ ├── StaticOptions.php │ └── UserLocation.php ├── records/ │ └── Map.php ├── resources/ │ └── OpenSans_LICENSE.txt ├── services/ │ ├── EmbedService.php │ ├── GeoLocationService.php │ ├── GeoService.php │ ├── MapService.php │ ├── StaticService.php │ └── What3WordsService.php ├── templates/ │ ├── _feedme-mapping.twig │ ├── field-settings.twig │ └── settings.twig ├── translations/ │ └── en/ │ └── simplemap.php ├── utilities/ │ └── StaticMap.php └── web/ ├── Variable.php └── assets/ ├── MapAsset.php └── map/ ├── css/ │ ├── app.css │ └── chunk-vendors.css ├── index.html └── js/ ├── app.js └── chunk-vendors.js