├── .github ├── FUNDING.yml └── workflows │ ├── automated.yml │ └── manual.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CoCreate.config.js ├── LICENSE ├── README.md ├── demo ├── autocomplete.html ├── current-location.html ├── direction.html ├── fleet-tracking.html ├── index.html ├── polyline_algorithm_test.html └── search.html ├── docs └── index.html ├── package.json ├── prettier.config.js ├── release.config.js ├── src ├── animate.js └── index.js └── webpack.config.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: CoCreate-app 4 | -------------------------------------------------------------------------------- /.github/workflows/automated.yml: -------------------------------------------------------------------------------- 1 | name: Automated Workflow 2 | on: 3 | push: 4 | branches: 5 | - master 6 | jobs: 7 | about: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - name: Checkout 11 | uses: actions/checkout@v3 12 | - name: Setup Node.js 13 | uses: actions/setup-node@v3 14 | with: 15 | node-version: 16 16 | - name: Jaid/action-sync-node-meta 17 | uses: jaid/action-sync-node-meta@v1.4.0 18 | with: 19 | direction: overwrite-github 20 | githubToken: "${{ secrets.GITHUB }}" 21 | release: 22 | runs-on: ubuntu-latest 23 | steps: 24 | - name: Checkout 25 | uses: actions/checkout@v3 26 | - name: Setup Node.js 27 | uses: actions/setup-node@v3 28 | with: 29 | node-version: 14 30 | - name: Semantic Release 31 | uses: cycjimmy/semantic-release-action@v3 32 | id: semantic 33 | with: 34 | extra_plugins: | 35 | @semantic-release/changelog 36 | @semantic-release/git 37 | @semantic-release/github 38 | env: 39 | GITHUB_TOKEN: "${{ secrets.GITHUB }}" 40 | NPM_TOKEN: "${{ secrets.NPM_TOKEN }}" 41 | outputs: 42 | new_release_published: "${{ steps.semantic.outputs.new_release_published }}" 43 | new_release_version: "${{ steps.semantic.outputs.new_release_version }}" 44 | 45 | -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- 1 | name: Manual Workflow 2 | on: 3 | workflow_dispatch: 4 | inputs: 5 | invalidations: 6 | description: | 7 | If set to 'true', invalidates previous upload. 8 | default: "true" 9 | required: true 10 | 11 | jobs: 12 | cdn: 13 | runs-on: ubuntu-latest 14 | env: 15 | DRY_RUN: ${{ github.event.inputs.dry_run }} 16 | GITHUB_TOKEN: "${{ secrets.GITHUB }}" 17 | NPM_TOKEN: "${{ secrets.NPM_TOKEN }}" 18 | 19 | steps: 20 | - name: Checkout 21 | uses: actions/checkout@v3 22 | - name: setup nodejs 23 | uses: actions/setup-node@v3 24 | with: 25 | node-version: 16 26 | - name: yarn install 27 | run: > 28 | echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > 29 | .npmrc 30 | 31 | yarn install 32 | - name: yarn build 33 | run: yarn build 34 | - name: upload latest bundle 35 | uses: CoCreate-app/CoCreate-s3@master 36 | with: 37 | aws-key-id: "${{ secrets.AWSACCESSKEYID }}" 38 | aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}" 39 | distributionId: "${{ secrets.DISTRIBUTION_ID }}" 40 | bucket: testcrudbucket 41 | source: ./dist 42 | destination: /google-maps/latest 43 | acl: public-read 44 | invalidations: ${{ github.event.inputs.invalidations }} 45 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore 2 | node_modules 3 | dist 4 | package-lock.json 5 | yarn.lock 6 | pnpm-lock.yaml 7 | 8 | logs 9 | *.log 10 | npm-debug.log* 11 | yarn-debug.log* 12 | yarn-error.log* 13 | lerna-debug.log* 14 | .pnpm-debug.log* 15 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## [1.12.3](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.12.2...v1.12.3) (2025-05-01) 2 | 3 | 4 | ### Bug Fixes 5 | 6 | * update [@cocreate](https://github.com/cocreate) dependencies ([6cdc3eb](https://github.com/CoCreate-app/CoCreate-google-maps/commit/6cdc3ebd911572f3cac6792884c8e8cdcd62e376)) 7 | 8 | ## [1.12.2](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.12.1...v1.12.2) (2025-04-30) 9 | 10 | 11 | ### Bug Fixes 12 | 13 | * added css-loader ([2cef504](https://github.com/CoCreate-app/CoCreate-google-maps/commit/2cef504a03ab712c737e779df4b01e2b5f9d57fe)) 14 | * import libraries ([a6c5d68](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a6c5d684dc4cf51addd56966fb25d656e7f41db1)) 15 | * update query attributes ([86a7af4](https://github.com/CoCreate-app/CoCreate-google-maps/commit/86a7af4e6f86aa5414b5f7b2fd7c46bcaec14561)) 16 | * updated cocreate modules versions ([aa10570](https://github.com/CoCreate-app/CoCreate-google-maps/commit/aa10570d42553f05093a661f166782a8e252e5e1)) 17 | * webpack.config and devdependencies ([e01583b](https://github.com/CoCreate-app/CoCreate-google-maps/commit/e01583b3d10120f37a3d3b527a338b7be29f589d)) 18 | 19 | ## [1.12.1](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.12.0...v1.12.1) (2025-04-11) 20 | 21 | 22 | ### Bug Fixes 23 | 24 | * dispatch end event on action element rather than document ([5143291](https://github.com/CoCreate-app/CoCreate-google-maps/commit/51432919e8a2c8d23bfa339732ea291ee1eb1acf)) 25 | * update observer obseve param to type and and attributeName to attributeFilter ([b0111bf](https://github.com/CoCreate-app/CoCreate-google-maps/commit/b0111bf6074b554474305bcd95ec7206ccb2c5d1)) 26 | 27 | # [1.12.0](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.11.0...v1.12.0) (2025-01-18) 28 | 29 | 30 | ### Bug Fixes 31 | 32 | * demo array ([599c168](https://github.com/CoCreate-app/CoCreate-google-maps/commit/599c16821c1901d7a6b5658e80f6f798d9efc0aa)) 33 | 34 | 35 | ### Features 36 | 37 | * reverse geocoding intergration ([a9bb9c4](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a9bb9c49fcde1eb9ae55a6117cb85463889c6649)) 38 | * Supports using @cocreate/api functions for request and response data as well as rendering ([aaf94ad](https://github.com/CoCreate-app/CoCreate-google-maps/commit/aaf94ad3ae7307dd196bca1effcfb02c96263409)) 39 | 40 | # [1.11.0](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.10.4...v1.11.0) (2024-11-04) 41 | 42 | 43 | ### Bug Fixes 44 | 45 | * pretier.config.js and file formating ([8df31f8](https://github.com/CoCreate-app/CoCreate-google-maps/commit/8df31f82254ffa465138d5a510c3ae5a0e015d1d)) 46 | 47 | 48 | ### Features 49 | 50 | * add prettier.config.js and format files ([52d7b73](https://github.com/CoCreate-app/CoCreate-google-maps/commit/52d7b73ed8c6ce542ce03be62b53ea7164fb6cca)) 51 | * add prettier.config.js and format files ([81974e3](https://github.com/CoCreate-app/CoCreate-google-maps/commit/81974e30f06146cbe6e19f314a6b40a2a03af5d7)) 52 | 53 | ## [1.10.4](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.10.3...v1.10.4) (2024-06-12) 54 | 55 | 56 | ### Bug Fixes 57 | 58 | * bump cocreate dependencies ([2473545](https://github.com/CoCreate-app/CoCreate-google-maps/commit/2473545d780af9a5122947d049a1362539fc69a4)) 59 | * svg icon class ([6b0aa57](https://github.com/CoCreate-app/CoCreate-google-maps/commit/6b0aa5774c5d0176ac745479973b5d1dff6cbaf6)) 60 | 61 | ## [1.10.3](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.10.2...v1.10.3) (2024-05-19) 62 | 63 | 64 | ### Bug Fixes 65 | 66 | * replaced localstorage-key with operator ([42866bc](https://github.com/CoCreate-app/CoCreate-google-maps/commit/42866bcef94c88418bb375620ad0e7fc5fd9554b)) 67 | 68 | ## [1.10.2](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.10.1...v1.10.2) (2024-04-29) 69 | 70 | 71 | ### Bug Fixes 72 | 73 | * bump cocreate dependencies ([b91956a](https://github.com/CoCreate-app/CoCreate-google-maps/commit/b91956a22be746a8bb282a933e085b3c422b7031)) 74 | 75 | ## [1.10.1](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.10.0...v1.10.1) (2024-02-05) 76 | 77 | 78 | ### Bug Fixes 79 | 80 | * Removed https://cdn.cocreate.app/latest/CoCreate.min.css ([6bac514](https://github.com/CoCreate-app/CoCreate-google-maps/commit/6bac514c082239291a5b564a653b6711e7f86a17)) 81 | 82 | # [1.10.0](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.9.0...v1.10.0) (2023-11-25) 83 | 84 | 85 | ### Features 86 | 87 | * upgrade dependencies for latest features and fixes ([3c1a39d](https://github.com/CoCreate-app/CoCreate-google-maps/commit/3c1a39d93f116395b38f34c56c2acb574c40baac)) 88 | 89 | # [1.9.0](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.8.0...v1.9.0) (2023-11-25) 90 | 91 | 92 | ### Bug Fixes 93 | 94 | * pass attributes renamed to state ([668a90e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/668a90e67e7087775620c57f91da34b0e6d9309e)) 95 | * update nav, edit button and css path ([f22cf4a](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f22cf4a98b8a5dc359c566c09782900b217e80bb)) 96 | 97 | 98 | ### Features 99 | 100 | * upgrade dependencies for latest features and fixes ([6d151bf](https://github.com/CoCreate-app/CoCreate-google-maps/commit/6d151bf2c499e8cd5f40717a8d92d7fd1c06d2bb)) 101 | 102 | # [1.8.0](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.7.7...v1.8.0) (2023-11-19) 103 | 104 | 105 | ### Features 106 | 107 | * update dependecies for th latest features and bug fixes ([5edd60b](https://github.com/CoCreate-app/CoCreate-google-maps/commit/5edd60bc71595f5ec36199286b09bf157ea7481f)) 108 | 109 | ## [1.7.7](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.7.6...v1.7.7) (2023-11-12) 110 | 111 | 112 | ### Bug Fixes 113 | 114 | * bump dependencies for latest features ([6de3452](https://github.com/CoCreate-app/CoCreate-google-maps/commit/6de3452abdcf265a4da671aded26146eb4dc13b4)) 115 | 116 | ## [1.7.6](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.7.5...v1.7.6) (2023-11-09) 117 | 118 | 119 | ### Bug Fixes 120 | 121 | * meta name typo ([d3dbfbb](https://github.com/CoCreate-app/CoCreate-google-maps/commit/d3dbfbb904567ec4086213d53ac1a9139608963a)) 122 | * update host ([768e463](https://github.com/CoCreate-app/CoCreate-google-maps/commit/768e463396503b33cfe4890b297ed5deb8cb6ccb)) 123 | * updated date to ISO format with UTC timezone ([b10e1d4](https://github.com/CoCreate-app/CoCreate-google-maps/commit/b10e1d4f8256cdcefb431d9ff49be028c27aa240)) 124 | 125 | ## [1.7.5](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.7.4...v1.7.5) (2023-11-03) 126 | 127 | 128 | ### Bug Fixes 129 | 130 | * update dependencies to the lates versions ([64aac20](https://github.com/CoCreate-app/CoCreate-google-maps/commit/64aac20809bd743dc6a278ee145ddf49f000a373)) 131 | 132 | ## [1.7.4](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.7.3...v1.7.4) (2023-10-25) 133 | 134 | 135 | ### Bug Fixes 136 | 137 | * bump dependencies ([b985f44](https://github.com/CoCreate-app/CoCreate-google-maps/commit/b985f441cc9fef708a206e3926907954a731dddf)) 138 | 139 | ## [1.7.3](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.7.2...v1.7.3) (2023-10-17) 140 | 141 | 142 | ### Bug Fixes 143 | 144 | * await getValue() ([141d18c](https://github.com/CoCreate-app/CoCreate-google-maps/commit/141d18cc115f21dcd585cb30808386972d563e75)) 145 | 146 | ## [1.7.2](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.7.1...v1.7.2) (2023-09-18) 147 | 148 | 149 | ### Bug Fixes 150 | 151 | * Add path and pathname ([cb984ed](https://github.com/CoCreate-app/CoCreate-google-maps/commit/cb984edf6f85c565163d7b506ffa869c9d4ced0f)) 152 | * Update CoCreate depndencies to latest versions ([380a65f](https://github.com/CoCreate-app/CoCreate-google-maps/commit/380a65fbef3fd826de20b1e576ab54217da25f4d)) 153 | 154 | ## [1.7.1](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.7.0...v1.7.1) (2023-08-21) 155 | 156 | 157 | ### Bug Fixes 158 | 159 | * bump dependencies ([cfb15b0](https://github.com/CoCreate-app/CoCreate-google-maps/commit/cfb15b0842ffe070cade84dd12596f7f60d3c52d)) 160 | 161 | # [1.7.0](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.6.1...v1.7.0) (2023-08-21) 162 | 163 | 164 | ### Features 165 | 166 | * Update cocreate dependencies for the latest features and bug fixes ([f2ab142](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f2ab1421b6d76c083c39d2dda5a7b27f5544c023)) 167 | 168 | ## [1.6.1](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.6.0...v1.6.1) (2023-08-21) 169 | 170 | 171 | ### Bug Fixes 172 | 173 | * /dist/CoCreate.js updated to https://CoCreate.app/dist/CoCreate.js ([4a21135](https://github.com/CoCreate-app/CoCreate-google-maps/commit/4a21135253efe67e5f3c701055fab5c57b1a3b76)) 174 | * replace cdn with /dist ([1bb8b41](https://github.com/CoCreate-app/CoCreate-google-maps/commit/1bb8b41e4b53dcc1c6814443a001fc0b458ffe1e)) 175 | * update file uploader ([963834c](https://github.com/CoCreate-app/CoCreate-google-maps/commit/963834c25f571cda7835ce41e988cddd63e56fad)) 176 | 177 | # [1.6.0](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.5.0...v1.6.0) (2023-08-17) 178 | 179 | 180 | ### Features 181 | 182 | * bump cocreate dependencies for the latest updates and features ([511a018](https://github.com/CoCreate-app/CoCreate-google-maps/commit/511a0189fc86a9510f770f0414c6ccb38533c1d2)) 183 | 184 | # [1.5.0](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.27...v1.5.0) (2023-08-16) 185 | 186 | 187 | ### Bug Fixes 188 | 189 | * crud attributes renamed ([a645484](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a64548428cb5d650d3c1f2e24d2910c236660489)) 190 | * renamed data-geolocation to geolocation ([c67a8ac](https://github.com/CoCreate-app/CoCreate-google-maps/commit/c67a8acf9daa8ce1420f901b067e95455a7ae1b2)) 191 | * replace -target -selector ([0ad3dca](https://github.com/CoCreate-app/CoCreate-google-maps/commit/0ad3dcaa475b16b2cd3facca64ae27b3a0f8f244)) 192 | * Simplify geolocation attribute in current-location.html ([9c2533e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/9c2533e7fc2ccb575f78093be4c81c80c0fd9685)) 193 | * updated fetch-limit to filter-limit ([f210169](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f21016936cc7f2dae0d6400af106052471a8b95c)) 194 | * webpack.config and package.json make use of mode=production instead of process.env ([b6d6adb](https://github.com/CoCreate-app/CoCreate-google-maps/commit/b6d6adbd7fd3d23c6864def644939d6b86dc323b)) 195 | 196 | 197 | ### Features 198 | 199 | * name attribute and variable renamed to key ([362b0dc](https://github.com/CoCreate-app/CoCreate-google-maps/commit/362b0dcdff256e3defcc0214c7572d6c7e818bce)) 200 | * Refactor geolocation initialization and saving logic ([a51b42d](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a51b42d2c026f970cef4afcdd2c6c9f3e5dfef1b)) 201 | * update template_id to render-selector attribute. update filter attributes to filter selector-attributes ([c31b978](https://github.com/CoCreate-app/CoCreate-google-maps/commit/c31b978172ed140d128ed59e357aa4470c7ea8cb)) 202 | 203 | ## [1.4.27](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.26...v1.4.27) (2023-06-14) 204 | 205 | 206 | ### Bug Fixes 207 | 208 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([010bdba](https://github.com/CoCreate-app/CoCreate-google-maps/commit/010bdba8ed6e781e15534f03111ceecafdf95df3)) 209 | 210 | ## [1.4.26](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.25...v1.4.26) (2023-06-11) 211 | 212 | 213 | ### Bug Fixes 214 | 215 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([91e3d9f](https://github.com/CoCreate-app/CoCreate-google-maps/commit/91e3d9fdd059e77d31e9e624bd70c84040cb1011)) 216 | 217 | ## [1.4.25](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.24...v1.4.25) (2023-06-11) 218 | 219 | 220 | ### Bug Fixes 221 | 222 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([8e71ebc](https://github.com/CoCreate-app/CoCreate-google-maps/commit/8e71ebc6e3700e9c3cc5ef78df5ebe4be803be8e)) 223 | 224 | ## [1.4.24](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.23...v1.4.24) (2023-06-11) 225 | 226 | 227 | ### Bug Fixes 228 | 229 | * testing workflow ([b937014](https://github.com/CoCreate-app/CoCreate-google-maps/commit/b9370143e412f270bf08ed7e3254cde289e5b02f)) 230 | 231 | ## [1.4.23](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.22...v1.4.23) (2023-06-11) 232 | 233 | 234 | ### Bug Fixes 235 | 236 | * testing workflow ([f095779](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f095779db5ddde8002ab0d883e15dc19b760df9a)) 237 | 238 | ## [1.4.22](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.21...v1.4.22) (2023-06-11) 239 | 240 | 241 | ### Bug Fixes 242 | 243 | * testing workflow ([001b9b0](https://github.com/CoCreate-app/CoCreate-google-maps/commit/001b9b0f268f5475e9f1d52d0e6565c0ada7f7c3)) 244 | * testing workflow ([ed4c952](https://github.com/CoCreate-app/CoCreate-google-maps/commit/ed4c95242c880dad58d6312fe4c8258b10470204)) 245 | 246 | ## [1.4.21](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.20...v1.4.21) (2023-06-11) 247 | 248 | 249 | ### Bug Fixes 250 | 251 | * testing workflow ([8c72ab5](https://github.com/CoCreate-app/CoCreate-google-maps/commit/8c72ab58fb448f31272684600d32d2c1999033f9)) 252 | 253 | ## [1.4.20](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.19...v1.4.20) (2023-06-11) 254 | 255 | 256 | ### Bug Fixes 257 | 258 | * postintall error ([923c876](https://github.com/CoCreate-app/CoCreate-google-maps/commit/923c8765108d5565ad61b96a81e4b9bf47fb8cc2)) 259 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([f41a8ab](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f41a8ab936ab6187dd1a19439850442ab5fcb728)) 260 | 261 | ## [1.4.19](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.18...v1.4.19) (2023-06-11) 262 | 263 | 264 | ### Bug Fixes 265 | 266 | * @cocreate/cli moved to dependencies ([569a452](https://github.com/CoCreate-app/CoCreate-google-maps/commit/569a4524296d93884a316080755b45ff8ce7f35b)) 267 | 268 | ## [1.4.18](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.17...v1.4.18) (2023-06-11) 269 | 270 | 271 | ### Bug Fixes 272 | 273 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([6ee9916](https://github.com/CoCreate-app/CoCreate-google-maps/commit/6ee991658a348babb325c56e0dde43f6dae479d3)) 274 | 275 | ## [1.4.17](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.16...v1.4.17) (2023-06-11) 276 | 277 | 278 | ### Bug Fixes 279 | 280 | * renamed hosts to host. the value can be a string or an array of strings ([129d9a4](https://github.com/CoCreate-app/CoCreate-google-maps/commit/129d9a420ee1afe4f91834c4853cd94b97efe3cb)) 281 | 282 | ## [1.4.16](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.15...v1.4.16) (2023-06-10) 283 | 284 | 285 | ### Bug Fixes 286 | 287 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([433621e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/433621ec8ee703bf62c8fff885a7f19553828a57)) 288 | 289 | ## [1.4.15](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.14...v1.4.15) (2023-06-10) 290 | 291 | 292 | ### Bug Fixes 293 | 294 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([679c829](https://github.com/CoCreate-app/CoCreate-google-maps/commit/679c8291fa16cb4f54f47a51f32abebe4c81f6a0)) 295 | 296 | ## [1.4.14](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.13...v1.4.14) (2023-06-04) 297 | 298 | 299 | ### Bug Fixes 300 | 301 | * Refactor CoCreate.config.js to remove hard-coded credentials ([7359f5e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/7359f5eca94034f498339a2f6444d21d57c51055)) 302 | 303 | ## [1.4.13](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.12...v1.4.13) (2023-06-04) 304 | 305 | 306 | ### Bug Fixes 307 | 308 | * replaced secert GITHUB_TOKEN with GITHUB ([5fbe44f](https://github.com/CoCreate-app/CoCreate-google-maps/commit/5fbe44f4b0afad8b426e6f576c0b568a8036bf0f)) 309 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([6b98830](https://github.com/CoCreate-app/CoCreate-google-maps/commit/6b988308dd3a3ad01bbc42b771f88a3a107a6162)) 310 | 311 | ## [1.4.12](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.11...v1.4.12) (2023-06-04) 312 | 313 | 314 | ### Bug Fixes 315 | 316 | * **semantic-release:** worklow error solved by running node version 14 ([be09415](https://github.com/CoCreate-app/CoCreate-google-maps/commit/be09415f2a5fd91c4775b569c01379b98e906768)) 317 | 318 | ## [1.4.11](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.10...v1.4.11) (2023-06-02) 319 | 320 | 321 | ### Bug Fixes 322 | 323 | * format demo html ([3dfe69d](https://github.com/CoCreate-app/CoCreate-google-maps/commit/3dfe69d33629d031bc52785e339f65a36aefa0ed)) 324 | 325 | ## [1.4.10](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.9...v1.4.10) (2023-05-21) 326 | 327 | 328 | ### Bug Fixes 329 | 330 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([4779fb3](https://github.com/CoCreate-app/CoCreate-google-maps/commit/4779fb332063f878a2a4148838db6a0275346058)) 331 | 332 | ## [1.4.9](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.8...v1.4.9) (2023-05-19) 333 | 334 | 335 | ### Bug Fixes 336 | 337 | * apikey renamed to key ([10ffdce](https://github.com/CoCreate-app/CoCreate-google-maps/commit/10ffdced5557e2ec74278ec9b17a45540687d072)) 338 | * apikey renamed to key ([e2a130f](https://github.com/CoCreate-app/CoCreate-google-maps/commit/e2a130fd4bdca368e1567f48d9d5ebd1ed8ecea4)) 339 | * update packages to latest version. This commit updates various packages in the dependencies section of the package.json file to their latest published versions, thereby fixing multiple bugs and improving overall performance. ([015853a](https://github.com/CoCreate-app/CoCreate-google-maps/commit/015853abb490dfe9936b37b99e9cd3202b890732)) 340 | 341 | ## [1.4.8](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.7...v1.4.8) (2023-05-06) 342 | 343 | 344 | ### Bug Fixes 345 | 346 | * bump [@cocreate](https://github.com/cocreate) dependencies ([bb71eb9](https://github.com/CoCreate-app/CoCreate-google-maps/commit/bb71eb937dbe071166e43ed61b95f36fe4c2aeee)) 347 | 348 | ## [1.4.7](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.6...v1.4.7) (2023-05-01) 349 | 350 | 351 | ### Bug Fixes 352 | 353 | * update manifest.json to manifest.webmanifest ([f2a933e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f2a933edc70b48690c9f588a2a6a77e3a8f8542c)) 354 | 355 | ## [1.4.6](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.5...v1.4.6) (2023-05-01) 356 | 357 | 358 | ### Bug Fixes 359 | 360 | * replace fontawesome with svg ([0728d84](https://github.com/CoCreate-app/CoCreate-google-maps/commit/0728d84d1f2af58383eddf6883502a1aca18df07)) 361 | 362 | ## [1.4.5](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.4...v1.4.5) (2023-04-30) 363 | 364 | 365 | ### Bug Fixes 366 | 367 | * fullscreen target updated to fullscreen fullscreen-target ([39bf299](https://github.com/CoCreate-app/CoCreate-google-maps/commit/39bf29982b150ef669bb785c5a1fc3e3ca534f03)) 368 | * package-lock.json and pnpm-lock.yaml added to .gitignore ([fecea8e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/fecea8e07707f85dd095cd6986a5df222babb185)) 369 | * removed toogle fullscreen icons. now using css content ([eb47648](https://github.com/CoCreate-app/CoCreate-google-maps/commit/eb476488a832814a1f188331b91371b91c2185d7)) 370 | * replaced sessionUser and sessionOrg with localstorage attributes ([0cb3b22](https://github.com/CoCreate-app/CoCreate-google-maps/commit/0cb3b22c4b6b75ebf2aecbe1269c4c1afd92be86)) 371 | 372 | ## [1.4.4](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.3...v1.4.4) (2023-04-24) 373 | 374 | 375 | ### Bug Fixes 376 | 377 | * updated worrkflows to v3 and node version 16 ([a3c4f85](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a3c4f854469d2525df256d094e41c045cd1bb559)) 378 | 379 | ## [1.4.3](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.2...v1.4.3) (2023-04-24) 380 | 381 | 382 | ### Bug Fixes 383 | 384 | * workflow node version updated 16 ([a20fd2a](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a20fd2ae2efb3acf7b09ea945c63ea879a5404a4)) 385 | 386 | ## [1.4.2](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.1...v1.4.2) (2023-04-24) 387 | 388 | 389 | ### Bug Fixes 390 | 391 | * bump [@cocreate](https://github.com/cocreate) dependencies ([10e5b88](https://github.com/CoCreate-app/CoCreate-google-maps/commit/10e5b880ea618836461ce216eed41d5b37f98dc5)) 392 | 393 | ## [1.4.1](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.4.0...v1.4.1) (2023-04-24) 394 | 395 | 396 | ### Bug Fixes 397 | 398 | * removed uglifyjs-webpack-plugin ([34be036](https://github.com/CoCreate-app/CoCreate-google-maps/commit/34be03671694eff10d239072294401ac9167a523)) 399 | 400 | # [1.4.0](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.3.6...v1.4.0) (2023-04-24) 401 | 402 | 403 | ### Features 404 | 405 | * added pwa manifest ([eac7ec5](https://github.com/CoCreate-app/CoCreate-google-maps/commit/eac7ec5425e5d8252f5ccb819a7f95a97d2f1689)) 406 | 407 | ## [1.3.6](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.3.5...v1.3.6) (2023-04-11) 408 | 409 | 410 | ### Bug Fixes 411 | 412 | * bump dependencies ([0911730](https://github.com/CoCreate-app/CoCreate-google-maps/commit/09117305ec36ae0d0a11e0c3bf6d207e538faa93)) 413 | 414 | ## [1.3.5](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.3.4...v1.3.5) (2023-04-11) 415 | 416 | 417 | ### Bug Fixes 418 | 419 | * bump [@cocreate](https://github.com/cocreate) dependencies ([fbfb8dc](https://github.com/CoCreate-app/CoCreate-google-maps/commit/fbfb8dc7c2966d02a84f9f73b4c0878dbd5bcb7c)) 420 | 421 | ## [1.3.4](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.3.3...v1.3.4) (2023-04-11) 422 | 423 | 424 | ### Bug Fixes 425 | 426 | * renamed domains to hosts ([108b4c7](https://github.com/CoCreate-app/CoCreate-google-maps/commit/108b4c7acb39dcae45e13c28fb253dbcaf1bc744)) 427 | 428 | ## [1.3.3](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.3.2...v1.3.3) (2023-03-30) 429 | 430 | 431 | ### Bug Fixes 432 | 433 | * bump [@cocreate](https://github.com/cocreate) dependencies' ([e8b0003](https://github.com/CoCreate-app/CoCreate-google-maps/commit/e8b00034f26cf94d0116ed13bd6ac4efe2b23be9)) 434 | 435 | ## [1.3.2](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.3.1...v1.3.2) (2023-03-16) 436 | 437 | 438 | ### Bug Fixes 439 | 440 | * bump dependencies' ([eda216e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/eda216eba04b58f951d8a8701305a4ca6853614a)) 441 | 442 | ## [1.3.1](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.3.0...v1.3.1) (2023-03-16) 443 | 444 | 445 | ### Bug Fixes 446 | 447 | * bump dependencies' ([f91b090](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f91b090f3344339bca4133b44c2f5f1b6aee3e2c)) 448 | 449 | # [1.3.0](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.2.11...v1.3.0) (2023-03-16) 450 | 451 | 452 | ### Features 453 | 454 | * replaced get-value and set-value with a super charged version of CoCreate-events ([064b4bd](https://github.com/CoCreate-app/CoCreate-google-maps/commit/064b4bd642d7dff737e454f7af45a208c2466c05)) 455 | 456 | ## [1.2.11](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.2.10...v1.2.11) (2023-03-15) 457 | 458 | 459 | ### Bug Fixes 460 | 461 | * actions object renamed to endPoints ([53f34d2](https://github.com/CoCreate-app/CoCreate-google-maps/commit/53f34d2e3b498659ee7018d7bc520877a96f4086)) 462 | 463 | ## [1.2.10](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.2.9...v1.2.10) (2023-02-01) 464 | 465 | 466 | ### Bug Fixes 467 | 468 | * bump dependencies ([a4dbea5](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a4dbea5479e60962d291fe3b621ac8f6bdf0b536)) 469 | 470 | ## [1.2.9](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.2.8...v1.2.9) (2023-01-31) 471 | 472 | 473 | ### Bug Fixes 474 | 475 | * bump dependencies ([92f07f2](https://github.com/CoCreate-app/CoCreate-google-maps/commit/92f07f258ee13b144f8168e64cf9793a18cd8539)) 476 | 477 | ## [1.2.8](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.2.7...v1.2.8) (2023-01-30) 478 | 479 | 480 | ### Bug Fixes 481 | 482 | * bump dependencies ([adf6763](https://github.com/CoCreate-app/CoCreate-google-maps/commit/adf6763abda5a2d9a3c7ca96a701717ef49cb8f2)) 483 | 484 | ## [1.2.7](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.2.6...v1.2.7) (2023-01-29) 485 | 486 | 487 | ### Bug Fixes 488 | 489 | * bump dependencies ([6606615](https://github.com/CoCreate-app/CoCreate-google-maps/commit/6606615fd0e9fcb500f71fca81a201ccf9e964be)) 490 | 491 | ## [1.2.6](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.2.5...v1.2.6) (2023-01-27) 492 | 493 | 494 | ### Bug Fixes 495 | 496 | * bump dependencies ([17bef56](https://github.com/CoCreate-app/CoCreate-google-maps/commit/17bef5608b3953bfffe95463a33268fc2e1539f4)) 497 | 498 | ## [1.2.5](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.2.4...v1.2.5) (2023-01-13) 499 | 500 | 501 | ### Bug Fixes 502 | 503 | * bump dependencies ([23fa245](https://github.com/CoCreate-app/CoCreate-google-maps/commit/23fa245e373e2a538f0862a97a5eaa0f03c501ef)) 504 | 505 | ## [1.2.4](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.2.3...v1.2.4) (2023-01-10) 506 | 507 | 508 | ### Bug Fixes 509 | 510 | * bump dependencies ([4dd7640](https://github.com/CoCreate-app/CoCreate-google-maps/commit/4dd7640e8a7340fa302d0dcd861636bb03256e34)) 511 | 512 | ## [1.2.3](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.2.2...v1.2.3) (2023-01-09) 513 | 514 | 515 | ### Bug Fixes 516 | 517 | * bump dependnecies ([df5f8e4](https://github.com/CoCreate-app/CoCreate-google-maps/commit/df5f8e4ffa91d67653c1d51093371bc707451678)) 518 | 519 | ## [1.2.2](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.2.1...v1.2.2) (2023-01-06) 520 | 521 | 522 | ### Bug Fixes 523 | 524 | * bump dependencies, worklow [@v3](https://github.com/v3) ([82356d2](https://github.com/CoCreate-app/CoCreate-google-maps/commit/82356d27327942218265f65bc5c9f17616b85fdb)) 525 | * edit in github btn styles ([b6180d0](https://github.com/CoCreate-app/CoCreate-google-maps/commit/b6180d0d8754b9dd06b13d4055d82ef8418351b0)) 526 | 527 | ## [1.2.1](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.2.0...v1.2.1) (2023-01-05) 528 | 529 | 530 | ### Bug Fixes 531 | 532 | * bump cdn to 1.39.4 ([310c5bc](https://github.com/CoCreate-app/CoCreate-google-maps/commit/310c5bc364c7953a0b6a45fcd1c921dab0983613)) 533 | * bump dependencies ([a652e6a](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a652e6aea3e93052feada3eca186bffcc7b40c4a)) 534 | 535 | # [1.2.0](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.114...v1.2.0) (2023-01-02) 536 | 537 | 538 | ### Features 539 | 540 | * class="template" template_id="id" replaced with template="id" ([01cec56](https://github.com/CoCreate-app/CoCreate-google-maps/commit/01cec561f9d6bb3c9080dcb9576a0edd324c6aee)) 541 | 542 | ## [1.1.114](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.113...v1.1.114) (2023-01-01) 543 | 544 | 545 | ### Bug Fixes 546 | 547 | * docs sanbox overflow ([01e6b7b](https://github.com/CoCreate-app/CoCreate-google-maps/commit/01e6b7b1ba1347b676cd5a3ff8a65edf7a9dfbd4)) 548 | 549 | ## [1.1.113](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.112...v1.1.113) (2022-12-31) 550 | 551 | 552 | ### Bug Fixes 553 | 554 | * bump dependencies ([647c870](https://github.com/CoCreate-app/CoCreate-google-maps/commit/647c8709917ae41c536575072287e0b51050e9f0)) 555 | 556 | ## [1.1.112](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.111...v1.1.112) (2022-12-30) 557 | 558 | 559 | ### Bug Fixes 560 | 561 | * update config sources to use template braces with entry on src ([4a6cd07](https://github.com/CoCreate-app/CoCreate-google-maps/commit/4a6cd0756e6eaaf0ca19196a651d615432f6a0aa)) 562 | 563 | ## [1.1.111](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.110...v1.1.111) (2022-12-29) 564 | 565 | 566 | ### Bug Fixes 567 | 568 | * bump dependencies ([c39d0d4](https://github.com/CoCreate-app/CoCreate-google-maps/commit/c39d0d489fc485b51f286660770dbb9a28d38b38)) 569 | 570 | ## [1.1.110](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.109...v1.1.110) (2022-12-27) 571 | 572 | 573 | ### Bug Fixes 574 | 575 | * bump dependencies ([88fb22b](https://github.com/CoCreate-app/CoCreate-google-maps/commit/88fb22b0105948c41f08d6baf8bf919529c89481)) 576 | 577 | ## [1.1.109](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.108...v1.1.109) (2022-12-25) 578 | 579 | 580 | ### Bug Fixes 581 | 582 | * bump dependencies ([94d738c](https://github.com/CoCreate-app/CoCreate-google-maps/commit/94d738c1c27d6c00b6c3fb3fcca5ed19f334a7e3)) 583 | 584 | ## [1.1.108](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.107...v1.1.108) (2022-12-23) 585 | 586 | 587 | ### Bug Fixes 588 | 589 | * bump dependnecies ([660e485](https://github.com/CoCreate-app/CoCreate-google-maps/commit/660e485bbfd4aea8bd79f021782e0655ce4a9bf4)) 590 | 591 | ## [1.1.107](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.106...v1.1.107) (2022-12-22) 592 | 593 | 594 | ### Bug Fixes 595 | 596 | * bump dependencies ([04be6ef](https://github.com/CoCreate-app/CoCreate-google-maps/commit/04be6ef39db6dd11db9a4c25f91f7522639b2d86)) 597 | 598 | ## [1.1.106](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.105...v1.1.106) (2022-12-22) 599 | 600 | 601 | ### Bug Fixes 602 | 603 | * update demos and bump dependencies ([9ececd6](https://github.com/CoCreate-app/CoCreate-google-maps/commit/9ececd6b7e31a6148a86650a3ca442c4751d8b0e)) 604 | 605 | ## [1.1.105](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.104...v1.1.105) (2022-12-21) 606 | 607 | 608 | ### Bug Fixes 609 | 610 | * bump dependencies ([a66c863](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a66c8638a7522bb47c82b43a84c747ed63ae3c7a)) 611 | 612 | ## [1.1.104](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.103...v1.1.104) (2022-12-20) 613 | 614 | 615 | ### Bug Fixes 616 | 617 | * bump dependencies ([3eb34af](https://github.com/CoCreate-app/CoCreate-google-maps/commit/3eb34af809130a26a42ed790fe8b3f9347c41e74)) 618 | 619 | ## [1.1.103](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.102...v1.1.103) (2022-12-15) 620 | 621 | 622 | ### Bug Fixes 623 | 624 | * add missing dev dependency style-loader ([9b348f5](https://github.com/CoCreate-app/CoCreate-google-maps/commit/9b348f5de92dde1628cfe3d922f734aca893caeb)) 625 | 626 | ## [1.1.102](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.101...v1.1.102) (2022-12-13) 627 | 628 | 629 | ### Bug Fixes 630 | 631 | * removed un used devDependencies ([d8d7c55](https://github.com/CoCreate-app/CoCreate-google-maps/commit/d8d7c5571b7528644e1c3c3980747197d9fb51e9)) 632 | 633 | ## [1.1.101](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.100...v1.1.101) (2022-12-13) 634 | 635 | 636 | ### Bug Fixes 637 | 638 | * bump dependencies ([9fde2db](https://github.com/CoCreate-app/CoCreate-google-maps/commit/9fde2db2d4d650e5582458a9993d0200ce9487ee)) 639 | 640 | ## [1.1.100](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.99...v1.1.100) (2022-12-12) 641 | 642 | 643 | ### Bug Fixes 644 | 645 | * bump dependencies ([ae2062e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/ae2062e73b9e6490990601ad280eb488340fadfe)) 646 | 647 | ## [1.1.99](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.98...v1.1.99) (2022-12-11) 648 | 649 | 650 | ### Bug Fixes 651 | 652 | * bump dependencies ([d56fd15](https://github.com/CoCreate-app/CoCreate-google-maps/commit/d56fd15b4b5ba08ad77ce836a258883049498c24)) 653 | 654 | ## [1.1.98](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.97...v1.1.98) (2022-12-09) 655 | 656 | 657 | ### Bug Fixes 658 | 659 | * bump dependencies ([794e068](https://github.com/CoCreate-app/CoCreate-google-maps/commit/794e068e5255a665928e131c1176a54306fe8924)) 660 | 661 | ## [1.1.97](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.96...v1.1.97) (2022-12-08) 662 | 663 | 664 | ### Bug Fixes 665 | 666 | * bump dependencies ([f1dbc00](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f1dbc004d74dcfd45ec4a89e1d337a88a5a6ced7)) 667 | 668 | ## [1.1.96](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.95...v1.1.96) (2022-12-07) 669 | 670 | 671 | ### Bug Fixes 672 | 673 | * bump dependencies ([98a60ab](https://github.com/CoCreate-app/CoCreate-google-maps/commit/98a60abb47acc9bda42839113fb7aefba3e8a4c7)) 674 | 675 | ## [1.1.95](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.94...v1.1.95) (2022-12-04) 676 | 677 | 678 | ### Bug Fixes 679 | 680 | * bump dependencies ([17dfa1b](https://github.com/CoCreate-app/CoCreate-google-maps/commit/17dfa1b31320d11534ad2c395113dc52ab70f5af)) 681 | 682 | ## [1.1.94](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.93...v1.1.94) (2022-12-02) 683 | 684 | 685 | ### Bug Fixes 686 | 687 | * bump dependencies ([919c2da](https://github.com/CoCreate-app/CoCreate-google-maps/commit/919c2dad9bf38943233054bb5ac1d7fb188bb61f)) 688 | * docs ([8af77d0](https://github.com/CoCreate-app/CoCreate-google-maps/commit/8af77d02e701f65b43c3d0f4af085ccb535246f1)) 689 | * renamed filter-sort-type to filter-sort-direction ([ac3554b](https://github.com/CoCreate-app/CoCreate-google-maps/commit/ac3554b60ceeb15b63178f75a9eb152cd5dde99d)) 690 | 691 | ## [1.1.93](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.92...v1.1.93) (2022-11-28) 692 | 693 | 694 | ### Bug Fixes 695 | 696 | * bump dependencies ([f356461](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f35646120030b355f1d37a6b503acfe275ea761f)) 697 | 698 | ## [1.1.92](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.91...v1.1.92) (2022-11-28) 699 | 700 | 701 | ### Bug Fixes 702 | 703 | * bump dependencies ([b3f5d79](https://github.com/CoCreate-app/CoCreate-google-maps/commit/b3f5d79738e82e205d377d24684e2e55c5589eab)) 704 | 705 | ## [1.1.91](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.90...v1.1.91) (2022-11-27) 706 | 707 | 708 | ### Bug Fixes 709 | 710 | * bump dependencies ([d397b75](https://github.com/CoCreate-app/CoCreate-google-maps/commit/d397b75996d363a3dd8ce25ed82670d11763c092)) 711 | 712 | ## [1.1.90](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.89...v1.1.90) (2022-11-26) 713 | 714 | 715 | ### Bug Fixes 716 | 717 | * bump dependencies ([36dc735](https://github.com/CoCreate-app/CoCreate-google-maps/commit/36dc735317506d83128ddf0b250ccc4cd58bd34d)) 718 | 719 | ## [1.1.89](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.88...v1.1.89) (2022-11-25) 720 | 721 | 722 | ### Bug Fixes 723 | 724 | * bump dependencies ([291072c](https://github.com/CoCreate-app/CoCreate-google-maps/commit/291072cf3be08a7037ab1e856dba88d13d4598bf)) 725 | 726 | ## [1.1.88](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.87...v1.1.88) (2022-11-24) 727 | 728 | 729 | ### Bug Fixes 730 | 731 | * bump depenedencies ([5b239d6](https://github.com/CoCreate-app/CoCreate-google-maps/commit/5b239d61b9a6f9d4f00b4fd85530ee044e61c426)) 732 | 733 | ## [1.1.87](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.86...v1.1.87) (2022-11-23) 734 | 735 | 736 | ### Bug Fixes 737 | 738 | * bumped [@cocreate](https://github.com/cocreate) dependencies ([0ade362](https://github.com/CoCreate-app/CoCreate-google-maps/commit/0ade36205836bcd3dcc3841fb0786080229c38c0)) 739 | 740 | ## [1.1.86](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.85...v1.1.86) (2022-11-22) 741 | 742 | 743 | ### Bug Fixes 744 | 745 | * apply src: {{source}} to CoCreate.config ([1da6074](https://github.com/CoCreate-app/CoCreate-google-maps/commit/1da6074e1f8ed973116936bee4af06307eae1c86)) 746 | * workflow docs ([526e1de](https://github.com/CoCreate-app/CoCreate-google-maps/commit/526e1de01e7d1734cc58314dac59dc524671a77e)) 747 | 748 | ## [1.1.85](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.84...v1.1.85) (2022-11-21) 749 | 750 | 751 | ### Bug Fixes 752 | 753 | * @cocreate/docs bug fix ([5487405](https://github.com/CoCreate-app/CoCreate-google-maps/commit/54874052e47e8d45cf81ff92d52d9db0885b862f)) 754 | 755 | ## [1.1.84](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.83...v1.1.84) (2022-11-21) 756 | 757 | 758 | ### Bug Fixes 759 | 760 | * replaced document_id with document._id ([1efad5a](https://github.com/CoCreate-app/CoCreate-google-maps/commit/1efad5aa576e2e86c68095eb2b6e41cc7ac569cc)) 761 | 762 | ## [1.1.83](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.82...v1.1.83) (2022-11-21) 763 | 764 | 765 | ### Bug Fixes 766 | 767 | * bump [@cocreate](https://github.com/cocreate) dependencies ([1a9c602](https://github.com/CoCreate-app/CoCreate-google-maps/commit/1a9c602d9df036ff4429d065951e5e662481eef2)) 768 | 769 | ## [1.1.82](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.81...v1.1.82) (2022-11-21) 770 | 771 | 772 | ### Bug Fixes 773 | 774 | * bump d@cocreate ependencies ([af70f5b](https://github.com/CoCreate-app/CoCreate-google-maps/commit/af70f5b0989fb3961b2815c758423eb1fba7659a)) 775 | 776 | ## [1.1.81](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.80...v1.1.81) (2022-11-21) 777 | 778 | 779 | ### Bug Fixes 780 | 781 | * filter-order attributes renamed to filter-sort ([66b64dd](https://github.com/CoCreate-app/CoCreate-google-maps/commit/66b64ddc4f8b41d9a0ae244d7c11da4997cd523a)) 782 | * update crud functions to receive an array of objects as the response ([ea70692](https://github.com/CoCreate-app/CoCreate-google-maps/commit/ea70692ef029e9a533b5cf6e8d5b5757e250ef0a)) 783 | 784 | ## [1.1.80](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.79...v1.1.80) (2022-10-02) 785 | 786 | 787 | ### Bug Fixes 788 | 789 | * minor bug fixes ([230d681](https://github.com/CoCreate-app/CoCreate-google-maps/commit/230d681345bd7a5ccdc4def1f456775d33046a25)) 790 | 791 | ## [1.1.79](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.78...v1.1.79) (2022-10-02) 792 | 793 | 794 | ### Bug Fixes 795 | 796 | * bump @cocreate/hosting and @cocreate/socket-client ([61376de](https://github.com/CoCreate-app/CoCreate-google-maps/commit/61376de09eec2913c08457d9afba6f4bbb4074c7)) 797 | 798 | ## [1.1.78](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.77...v1.1.78) (2022-10-01) 799 | 800 | 801 | ### Bug Fixes 802 | 803 | * bump dependencies ([bcbd694](https://github.com/CoCreate-app/CoCreate-google-maps/commit/bcbd694f0e8ddd42e09fde57e0e4a2e1e3565f93)) 804 | 805 | ## [1.1.77](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.76...v1.1.77) (2022-09-30) 806 | 807 | 808 | ### Bug Fixes 809 | 810 | * bump [@cocreate](https://github.com/cocreate) dependencies ([24f1955](https://github.com/CoCreate-app/CoCreate-google-maps/commit/24f19558a99a9876965cb9d9b1789b5d98219788)) 811 | 812 | ## [1.1.76](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.75...v1.1.76) (2022-09-30) 813 | 814 | 815 | ### Bug Fixes 816 | 817 | * bump [@cocreate](https://github.com/cocreate) dependencies ([5ff5c7e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/5ff5c7e0b3995169c21d4ac57d7d94a186d36085)) 818 | 819 | ## [1.1.75](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.74...v1.1.75) (2022-09-30) 820 | 821 | 822 | ### Bug Fixes 823 | 824 | * bump [@cocreate](https://github.com/cocreate) dependencies ([4d6815e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/4d6815e23eab2ff66fd615446613963c152fb748)) 825 | 826 | ## [1.1.74](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.73...v1.1.74) (2022-09-30) 827 | 828 | 829 | ### Bug Fixes 830 | 831 | * bump dependencies ([00a7091](https://github.com/CoCreate-app/CoCreate-google-maps/commit/00a7091e9e2e2ee5675f9f8f375abcdb33f940cd)) 832 | 833 | ## [1.1.73](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.72...v1.1.73) (2022-09-29) 834 | 835 | 836 | ### Bug Fixes 837 | 838 | * config renameed to CoCreateConfig ([d87d046](https://github.com/CoCreate-app/CoCreate-google-maps/commit/d87d046d05c20329d630ae35f61d87d861bbbdf3)) 839 | 840 | ## [1.1.72](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.71...v1.1.72) (2022-09-01) 841 | 842 | 843 | ### Bug Fixes 844 | 845 | * bump all of [@cocreate](https://github.com/cocreate) dependencies ([0743d0e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/0743d0ef0981ec70e3cb3cdb0b5584500e7d253b)) 846 | 847 | ## [1.1.71](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.70...v1.1.71) (2022-08-19) 848 | 849 | 850 | ### Bug Fixes 851 | 852 | * renamed order-by and order-type to filter-order-name and filter-order-type ([0db3c62](https://github.com/CoCreate-app/CoCreate-google-maps/commit/0db3c62aba573bfd0481ca97c559470ba40a386d)) 853 | 854 | ## [1.1.70](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.69...v1.1.70) (2022-07-03) 855 | 856 | 857 | ### Bug Fixes 858 | 859 | * update pass-fetch and pass-filter attributes ([e5cbff7](https://github.com/CoCreate-app/CoCreate-google-maps/commit/e5cbff7c608176426bfb0aeba8f37f1a6be6d69b)) 860 | 861 | ## [1.1.69](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.68...v1.1.69) (2022-06-18) 862 | 863 | 864 | ### Bug Fixes 865 | 866 | * bump dependencies ([c145f30](https://github.com/CoCreate-app/CoCreate-google-maps/commit/c145f304ee867450b6c9c7fba542edac30d1c62f)) 867 | 868 | ## [1.1.68](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.67...v1.1.68) (2022-06-12) 869 | 870 | 871 | ### Bug Fixes 872 | 873 | * update dependencies ([0f49891](https://github.com/CoCreate-app/CoCreate-google-maps/commit/0f49891287eb88c85bfca482aef8645f385707c0)) 874 | * update docs css document_id ([46c1de5](https://github.com/CoCreate-app/CoCreate-google-maps/commit/46c1de54cf94d94e4e5b5f25e733a2965612fb26)) 875 | 876 | ## [1.1.67](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.66...v1.1.67) (2022-05-23) 877 | 878 | 879 | ### Bug Fixes 880 | 881 | * bump all dependencies ([8b052c0](https://github.com/CoCreate-app/CoCreate-google-maps/commit/8b052c0215450d1f1cf805fcbcf4eacefdc1fb81)) 882 | 883 | ## [1.1.66](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.65...v1.1.66) (2022-05-19) 884 | 885 | 886 | ### Bug Fixes 887 | 888 | * update document_id on link index.css ([ae265c4](https://github.com/CoCreate-app/CoCreate-google-maps/commit/ae265c4e64bd375031c704696e1817a990bb29f4)) 889 | 890 | ## [1.1.65](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.64...v1.1.65) (2022-05-06) 891 | 892 | 893 | ### Bug Fixes 894 | 895 | * update config organization_Id to organization_id ([988a8d4](https://github.com/CoCreate-app/CoCreate-google-maps/commit/988a8d455869375b6568570d7bf219d027942ea5)) 896 | 897 | ## [1.1.64](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.63...v1.1.64) (2022-03-21) 898 | 899 | 900 | ### Bug Fixes 901 | 902 | * update class sortable to attribute sortable ([9e911b6](https://github.com/CoCreate-app/CoCreate-google-maps/commit/9e911b6a4510eab59930351214109520f975ee0c)) 903 | 904 | ## [1.1.63](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.62...v1.1.63) (2022-02-24) 905 | 906 | 907 | ### Bug Fixes 908 | 909 | * CoCreate.config replace CoCreate.app with * ([f07fa59](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f07fa59845b53f7ce23d8a5bbd995327c5613382)) 910 | 911 | ## [1.1.62](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.61...v1.1.62) (2022-02-16) 912 | 913 | 914 | ### Bug Fixes 915 | 916 | * update dependencies ([01dfc36](https://github.com/CoCreate-app/CoCreate-google-maps/commit/01dfc363ed135d293be9f323e7551b3d5ae42c03)) 917 | 918 | ## [1.1.61](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.60...v1.1.61) (2022-02-10) 919 | 920 | 921 | ### Bug Fixes 922 | 923 | * bump dependencies ([496be43](https://github.com/CoCreate-app/CoCreate-google-maps/commit/496be431a5cce85d8c2606b3f2c127047a8de29d)) 924 | 925 | ## [1.1.60](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.59...v1.1.60) (2022-02-07) 926 | 927 | 928 | ### Bug Fixes 929 | 930 | * bump dependency versions ([2eedf37](https://github.com/CoCreate-app/CoCreate-google-maps/commit/2eedf37f6ce00fe0d060841e0e475e33c7d22e66)) 931 | 932 | ## [1.1.59](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.58...v1.1.59) (2022-02-03) 933 | 934 | 935 | ### Bug Fixes 936 | 937 | * replaced show and hide class hidden with attribute hidden ([d93ac71](https://github.com/CoCreate-app/CoCreate-google-maps/commit/d93ac7170b20578067e61b1fdbf5f13d5450377c)) 938 | 939 | ## [1.1.58](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.57...v1.1.58) (2022-02-01) 940 | 941 | 942 | ### Bug Fixes 943 | 944 | * update dependency versions ([19921e0](https://github.com/CoCreate-app/CoCreate-google-maps/commit/19921e04190404064312eac8c26abb3b57d7decf)) 945 | 946 | ## [1.1.57](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.56...v1.1.57) (2022-01-01) 947 | 948 | 949 | ### Bug Fixes 950 | 951 | * get-value attribute value now supports a selector added # to all values currently in get-value attributes ([09450e2](https://github.com/CoCreate-app/CoCreate-google-maps/commit/09450e25a27ac93a896e5ff992e61ac58fed5a87)) 952 | 953 | ## [1.1.56](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.55...v1.1.56) (2021-12-25) 954 | 955 | 956 | ### Bug Fixes 957 | 958 | * removed data-search_type=or ([7c28736](https://github.com/CoCreate-app/CoCreate-google-maps/commit/7c28736d0ad320efbd8edf3bd9f16264ef6dbd0c)) 959 | 960 | ## [1.1.55](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.54...v1.1.55) (2021-12-23) 961 | 962 | 963 | ### Bug Fixes 964 | 965 | * renamed filter-value_type to filter-value-type ([a406cab](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a406cab0dc5c7236e72ba345e71dd155cde903c6)) 966 | 967 | ## [1.1.54](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.53...v1.1.54) (2021-12-15) 968 | 969 | 970 | ### Bug Fixes 971 | 972 | * update dependencies ([482e8d2](https://github.com/CoCreate-app/CoCreate-google-maps/commit/482e8d27344deba5708230668a3b3b09e20078e0)) 973 | 974 | ## [1.1.53](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.52...v1.1.53) (2021-12-14) 975 | 976 | 977 | ### Bug Fixes 978 | 979 | * update dependencies ([5841ec0](https://github.com/CoCreate-app/CoCreate-google-maps/commit/5841ec01f5c4e908bbedb2b2d125ab59bb29c1e1)) 980 | 981 | ## [1.1.52](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.51...v1.1.52) (2021-11-27) 982 | 983 | 984 | ### Bug Fixes 985 | 986 | * update dependencies ([1ce7abe](https://github.com/CoCreate-app/CoCreate-google-maps/commit/1ce7abef77b0b3e1873612ef9610d0c070a8a743)) 987 | 988 | ## [1.1.51](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.50...v1.1.51) (2021-11-27) 989 | 990 | 991 | ### Bug Fixes 992 | 993 | * update dependencies ([250cbc7](https://github.com/CoCreate-app/CoCreate-google-maps/commit/250cbc7b9efb0e666cb7a9a6fd95d39c86f6624c)) 994 | 995 | ## [1.1.50](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.49...v1.1.50) (2021-11-27) 996 | 997 | 998 | ### Bug Fixes 999 | 1000 | * update docs api and cocreateJS script ([6233a27](https://github.com/CoCreate-app/CoCreate-google-maps/commit/6233a274d4e337d1c683281d758ae88939623c57)) 1001 | 1002 | ## [1.1.49](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.48...v1.1.49) (2021-11-26) 1003 | 1004 | 1005 | ### Bug Fixes 1006 | 1007 | * docs sidenav width ([24bf8df](https://github.com/CoCreate-app/CoCreate-google-maps/commit/24bf8df837b62e0ad079b51531224fe1e945cbcb)) 1008 | 1009 | ## [1.1.48](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.47...v1.1.48) (2021-11-26) 1010 | 1011 | 1012 | ### Bug Fixes 1013 | 1014 | * update dependencies ([2647ce9](https://github.com/CoCreate-app/CoCreate-google-maps/commit/2647ce940bab46ca1a39fb463f78e905b1b8a73e)) 1015 | 1016 | ## [1.1.47](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.46...v1.1.47) (2021-11-23) 1017 | 1018 | 1019 | ### Bug Fixes 1020 | 1021 | * update dependencies ([19b74ae](https://github.com/CoCreate-app/CoCreate-google-maps/commit/19b74aebf22d0a649491ebd9b9770724e3b58114)) 1022 | 1023 | ## [1.1.46](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.45...v1.1.46) (2021-11-20) 1024 | 1025 | 1026 | ### Bug Fixes 1027 | 1028 | * updated script tags and link tags ([2e26ccd](https://github.com/CoCreate-app/CoCreate-google-maps/commit/2e26ccd5bc5bd24f6fbf31a303cbe33045795af0)) 1029 | 1030 | ## [1.1.45](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.44...v1.1.45) (2021-11-20) 1031 | 1032 | 1033 | ### Bug Fixes 1034 | 1035 | * update dependencies ([1784564](https://github.com/CoCreate-app/CoCreate-google-maps/commit/1784564253b95b671e70e6716eeef23d697cb234)) 1036 | 1037 | ## [1.1.44](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.43...v1.1.44) (2021-11-19) 1038 | 1039 | 1040 | ### Bug Fixes 1041 | 1042 | * update dependencies ([981fef1](https://github.com/CoCreate-app/CoCreate-google-maps/commit/981fef1c12c29939b4787f8f21fd2e180544b09a)) 1043 | 1044 | ## [1.1.43](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.42...v1.1.43) (2021-11-18) 1045 | 1046 | 1047 | ### Bug Fixes 1048 | 1049 | * update dependencies ([904322d](https://github.com/CoCreate-app/CoCreate-google-maps/commit/904322d78c3287cbd5e297319a4c566465e4accc)) 1050 | 1051 | ## [1.1.42](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.41...v1.1.42) (2021-11-16) 1052 | 1053 | 1054 | ### Bug Fixes 1055 | 1056 | * update dependencies ([2b19934](https://github.com/CoCreate-app/CoCreate-google-maps/commit/2b199347d485c56c31e427b89a5de43a75876b18)) 1057 | 1058 | ## [1.1.41](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.40...v1.1.41) (2021-11-15) 1059 | 1060 | 1061 | ### Bug Fixes 1062 | 1063 | * update dependencies ([b0ae6c8](https://github.com/CoCreate-app/CoCreate-google-maps/commit/b0ae6c8620bb57f0c962e4cdecad74d4a45b68c1)) 1064 | 1065 | ## [1.1.40](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.39...v1.1.40) (2021-11-11) 1066 | 1067 | 1068 | ### Bug Fixes 1069 | 1070 | * update readme ([830ae94](https://github.com/CoCreate-app/CoCreate-google-maps/commit/830ae94c9afe68209f65bc6fdc8287577b62d20a)) 1071 | 1072 | ## [1.1.39](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.38...v1.1.39) (2021-11-08) 1073 | 1074 | 1075 | ### Bug Fixes 1076 | 1077 | * map now displays ([6fef92f](https://github.com/CoCreate-app/CoCreate-google-maps/commit/6fef92f7b6b29fce396dc8e9571532dedc991c9f)) 1078 | 1079 | ## [1.1.38](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.37...v1.1.38) (2021-11-06) 1080 | 1081 | 1082 | ### Bug Fixes 1083 | 1084 | * update dependencies ([5a3a29a](https://github.com/CoCreate-app/CoCreate-google-maps/commit/5a3a29ab24574414ffafb8d4fbb1c2f8e6ca450a)) 1085 | 1086 | ## [1.1.37](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.36...v1.1.37) (2021-11-04) 1087 | 1088 | 1089 | ### Bug Fixes 1090 | 1091 | * update dependencies ([e1632e0](https://github.com/CoCreate-app/CoCreate-google-maps/commit/e1632e0333da67631ac9624ae8826fd56b306f47)) 1092 | 1093 | ## [1.1.36](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.35...v1.1.36) (2021-11-04) 1094 | 1095 | 1096 | ### Bug Fixes 1097 | 1098 | * update packages ([ca28311](https://github.com/CoCreate-app/CoCreate-google-maps/commit/ca283111d4454cdb01af6573daa1ecbf805293df)) 1099 | 1100 | ## [1.1.35](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.34...v1.1.35) (2021-11-01) 1101 | 1102 | 1103 | ### Bug Fixes 1104 | 1105 | * update package dependencies ([5973321](https://github.com/CoCreate-app/CoCreate-google-maps/commit/59733216fe44eab263c04e81947e511b95e22264)) 1106 | 1107 | ## [1.1.34](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.33...v1.1.34) (2021-10-29) 1108 | 1109 | 1110 | ### Bug Fixes 1111 | 1112 | * update dependencies ([e3b7ddd](https://github.com/CoCreate-app/CoCreate-google-maps/commit/e3b7ddd11893bdfa5d9ce275b665495a3c368b94)) 1113 | 1114 | ## [1.1.33](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.32...v1.1.33) (2021-10-17) 1115 | 1116 | 1117 | ### Bug Fixes 1118 | 1119 | * update dependendies ([efc1d98](https://github.com/CoCreate-app/CoCreate-google-maps/commit/efc1d98b1314dc341aa04d9226e986e242a3a84b)) 1120 | 1121 | ## [1.1.32](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.31...v1.1.32) (2021-10-16) 1122 | 1123 | 1124 | ### Bug Fixes 1125 | 1126 | * update socket package to fix bug in docs ([a077da4](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a077da4e77ed85bbcf937b4671dd4754f639b674)) 1127 | 1128 | ## [1.1.31](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.30...v1.1.31) (2021-10-15) 1129 | 1130 | 1131 | ### Bug Fixes 1132 | 1133 | * update dependencies ([3adb399](https://github.com/CoCreate-app/CoCreate-google-maps/commit/3adb399ae6a6e35351a91c46913c587c082f3c93)) 1134 | * update dependencies ([3327a40](https://github.com/CoCreate-app/CoCreate-google-maps/commit/3327a403077aa752da51b579fc266174962e1449)) 1135 | 1136 | ## [1.1.30](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.29...v1.1.30) (2021-10-15) 1137 | 1138 | 1139 | ### Bug Fixes 1140 | 1141 | * update packages ([edf2f93](https://github.com/CoCreate-app/CoCreate-google-maps/commit/edf2f934d6a43c6e3a3ccda2167ee386acef973b)) 1142 | 1143 | ## [1.1.29](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.28...v1.1.29) (2021-10-15) 1144 | 1145 | 1146 | ### Bug Fixes 1147 | 1148 | * updated dependencies ([42aafcd](https://github.com/CoCreate-app/CoCreate-google-maps/commit/42aafcdac0fe969bf7bd39ca0e222cceb85b67bb)) 1149 | 1150 | ## [1.1.28](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.27...v1.1.28) (2021-10-13) 1151 | 1152 | 1153 | ### Bug Fixes 1154 | 1155 | * update descriptions ([f8078bd](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f8078bd9df45a59e78c51420497138dfc1aff37d)) 1156 | 1157 | ## [1.1.27](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.26...v1.1.27) (2021-10-13) 1158 | 1159 | 1160 | ### Bug Fixes 1161 | 1162 | * update dependencies ([34f6f74](https://github.com/CoCreate-app/CoCreate-google-maps/commit/34f6f74f0db0d5cde502f49ebc59a83d43f06c76)) 1163 | 1164 | ## [1.1.26](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.25...v1.1.26) (2021-10-06) 1165 | 1166 | 1167 | ### Bug Fixes 1168 | 1169 | * update dependencies ([aeaf17f](https://github.com/CoCreate-app/CoCreate-google-maps/commit/aeaf17f7b6b80a3e55bb984101017a867b5d9412)) 1170 | 1171 | ## [1.1.25](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.24...v1.1.25) (2021-10-05) 1172 | 1173 | 1174 | ### Bug Fixes 1175 | 1176 | * update dependencies ([7d0f04f](https://github.com/CoCreate-app/CoCreate-google-maps/commit/7d0f04f23a6201ffed0e1c2bac9f131ecbf0a7de)) 1177 | * website_id in CoCreate.config ([d3fb5cf](https://github.com/CoCreate-app/CoCreate-google-maps/commit/d3fb5cf7981813981fcc4fbeb348444a3b45119f)) 1178 | 1179 | ## [1.1.24](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.23...v1.1.24) (2021-10-04) 1180 | 1181 | 1182 | ### Bug Fixes 1183 | 1184 | * update dependencies ([697019c](https://github.com/CoCreate-app/CoCreate-google-maps/commit/697019cbd94d12c60c9c919405b7d304598924c5)) 1185 | 1186 | ## [1.1.23](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.22...v1.1.23) (2021-10-04) 1187 | 1188 | 1189 | ### Bug Fixes 1190 | 1191 | * update dependencies ([9c37977](https://github.com/CoCreate-app/CoCreate-google-maps/commit/9c37977b21a594451ff73e7159e7e564f30c1a7f)) 1192 | 1193 | ## [1.1.22](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.21...v1.1.22) (2021-10-01) 1194 | 1195 | 1196 | ### Bug Fixes 1197 | 1198 | * update packages ([e4af591](https://github.com/CoCreate-app/CoCreate-google-maps/commit/e4af591b3a3d80a979b68f1029787407ae48b8b8)) 1199 | 1200 | ## [1.1.21](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.20...v1.1.21) (2021-10-01) 1201 | 1202 | 1203 | ### Bug Fixes 1204 | 1205 | * update dependencies ([77d71d4](https://github.com/CoCreate-app/CoCreate-google-maps/commit/77d71d424fc676635cad18c99d81c660d10665ca)) 1206 | 1207 | ## [1.1.20](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.19...v1.1.20) (2021-09-28) 1208 | 1209 | 1210 | ### Bug Fixes 1211 | 1212 | * update dependencies ([9cf0da7](https://github.com/CoCreate-app/CoCreate-google-maps/commit/9cf0da7990468980c4aa9b5ffe0520974eb67a2f)) 1213 | 1214 | ## [1.1.19](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.18...v1.1.19) (2021-09-16) 1215 | 1216 | 1217 | ### Bug Fixes 1218 | 1219 | * update dependencies ([9e92e1e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/9e92e1e7c1f31b0e2cbe25bcbee44e95464573a8)) 1220 | 1221 | ## [1.1.18](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.17...v1.1.18) (2021-09-14) 1222 | 1223 | 1224 | ### Bug Fixes 1225 | 1226 | * add cocreate.app to domains ([9c7d871](https://github.com/CoCreate-app/CoCreate-google-maps/commit/9c7d871c66497b645ea13d9c3b9f9f3dc1131256)) 1227 | 1228 | ## [1.1.17](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.16...v1.1.17) (2021-09-13) 1229 | 1230 | 1231 | ### Bug Fixes 1232 | 1233 | * upgrade dependencies ([ea2dd76](https://github.com/CoCreate-app/CoCreate-google-maps/commit/ea2dd768559d09c1dee7d099aa34ad57358ea48a)) 1234 | 1235 | ## [1.1.16](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.15...v1.1.16) (2021-09-12) 1236 | 1237 | 1238 | ### Bug Fixes 1239 | 1240 | * update sidenav to use resize and toggle ([2802afc](https://github.com/CoCreate-app/CoCreate-google-maps/commit/2802afc38c08a41eb38a18f08e26d0d3aacad6bc)) 1241 | 1242 | ## [1.1.15](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.14...v1.1.15) (2021-09-09) 1243 | 1244 | 1245 | ### Bug Fixes 1246 | 1247 | * update dependency @cocreate/docs ([19498ce](https://github.com/CoCreate-app/CoCreate-google-maps/commit/19498ce3048461800dedfd77dc29c454a0b6339d)) 1248 | 1249 | ## [1.1.14](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.13...v1.1.14) (2021-09-09) 1250 | 1251 | 1252 | ### Bug Fixes 1253 | 1254 | * ci docs ([7485832](https://github.com/CoCreate-app/CoCreate-google-maps/commit/7485832ff19e6c9c3d31e02147f99ac5a2195262)) 1255 | 1256 | ## [1.1.13](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.12...v1.1.13) (2021-09-09) 1257 | 1258 | 1259 | ### Bug Fixes 1260 | 1261 | * update dependencies ([f961070](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f961070fe13c1d0858205a25d5eb1c29a7a8229d)) 1262 | 1263 | ## [1.1.12](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.11...v1.1.12) (2021-09-09) 1264 | 1265 | 1266 | ### Bug Fixes 1267 | 1268 | * CoCreate.config directory, path, name and public ([006a831](https://github.com/CoCreate-app/CoCreate-google-maps/commit/006a83160a044496f50b84bbdec735300f64ed5c)) 1269 | 1270 | ## [1.1.11](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.10...v1.1.11) (2021-09-08) 1271 | 1272 | 1273 | ### Bug Fixes 1274 | 1275 | * update dependencies ([a2d9ae4](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a2d9ae45bca0c68d300197634138776c89cb8a6b)) 1276 | 1277 | ## [1.1.10](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.9...v1.1.10) (2021-09-04) 1278 | 1279 | 1280 | ### Bug Fixes 1281 | 1282 | * update dependencies ([00b2ed6](https://github.com/CoCreate-app/CoCreate-google-maps/commit/00b2ed6bc7f5ccc4fee9b3a09b54b798a98f8f8c)) 1283 | 1284 | ## [1.1.9](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.8...v1.1.9) (2021-08-31) 1285 | 1286 | 1287 | ### Bug Fixes 1288 | 1289 | * update dependencies ([87178b7](https://github.com/CoCreate-app/CoCreate-google-maps/commit/87178b7849a52763f5e6ceb2c5945e153ba3d74d)) 1290 | 1291 | ## [1.1.8](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.7...v1.1.8) (2021-08-27) 1292 | 1293 | 1294 | ### Bug Fixes 1295 | 1296 | * updaed dependencies ([7d26f65](https://github.com/CoCreate-app/CoCreate-google-maps/commit/7d26f6509047c79d3f194349e3accda8993d72ab)) 1297 | 1298 | ## [1.1.7](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.6...v1.1.7) (2021-08-23) 1299 | 1300 | 1301 | ### Bug Fixes 1302 | 1303 | * update package versions ([dee7b88](https://github.com/CoCreate-app/CoCreate-google-maps/commit/dee7b88bf667e188e1329ce992370ed6f1a4036e)) 1304 | 1305 | ## [1.1.6](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.5...v1.1.6) (2021-08-22) 1306 | 1307 | 1308 | ### Bug Fixes 1309 | 1310 | * removed data- from main-content, clone, filter-value_type ([7a3ce00](https://github.com/CoCreate-app/CoCreate-google-maps/commit/7a3ce000e3dd507bbaa15e864af520578ccfcde1)) 1311 | 1312 | ## [1.1.5](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.4...v1.1.5) (2021-08-22) 1313 | 1314 | 1315 | ### Bug Fixes 1316 | 1317 | * bump package versions ([3b3f0b9](https://github.com/CoCreate-app/CoCreate-google-maps/commit/3b3f0b9f2c0f35d6371b6ba77f02bcc341ec4b03)) 1318 | 1319 | ## [1.1.4](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.3...v1.1.4) (2021-08-22) 1320 | 1321 | 1322 | ### Bug Fixes 1323 | 1324 | * bump package versions ([b34c9f8](https://github.com/CoCreate-app/CoCreate-google-maps/commit/b34c9f865f4b437932054c6bb73205f4f6550b10)) 1325 | 1326 | ## [1.1.3](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.2...v1.1.3) (2021-08-14) 1327 | 1328 | 1329 | ### Bug Fixes 1330 | 1331 | * remove data- from dnd attributes ([dbdeb6c](https://github.com/CoCreate-app/CoCreate-google-maps/commit/dbdeb6c6d4583858acc103fdb7d18bad88e15ec7)) 1332 | * update to docs ([65d4a36](https://github.com/CoCreate-app/CoCreate-google-maps/commit/65d4a36e5b27714aa7a5214d5e6ed57c1eea15a7)) 1333 | 1334 | ## [1.1.2](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.1...v1.1.2) (2021-08-02) 1335 | 1336 | 1337 | ### Bug Fixes 1338 | 1339 | * remove data- from attributes ([a2fc143](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a2fc143e23524b1ccf1d9e1729998ee7417a7a5e)) 1340 | * update data-fullscreen to fullscreen ([c8f9666](https://github.com/CoCreate-app/CoCreate-google-maps/commit/c8f9666fa39aec0d93205f03d5c7dabaf1fa56b2)) 1341 | 1342 | ## [1.1.1](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.1.0...v1.1.1) (2021-07-28) 1343 | 1344 | 1345 | ### Bug Fixes 1346 | 1347 | * remove data- from fetch, pass and filter ([20a6835](https://github.com/CoCreate-app/CoCreate-google-maps/commit/20a683579e085807b412d42d1f9827757528cedd)) 1348 | 1349 | # [1.1.0](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.18...v1.1.0) (2021-07-28) 1350 | 1351 | 1352 | ### Features 1353 | 1354 | * add new is{attribute} system and remove data- from attributtes ([05579f9](https://github.com/CoCreate-app/CoCreate-google-maps/commit/05579f9af9afd042e186ac645740b577b0c4abbf)) 1355 | 1356 | ## [1.0.18](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.17...v1.0.18) (2021-07-17) 1357 | 1358 | 1359 | ### Bug Fixes 1360 | 1361 | * workflows ([eec2638](https://github.com/CoCreate-app/CoCreate-google-maps/commit/eec26386acb8dd7339e8bea7c72099991d9b5902)) 1362 | 1363 | ## [1.0.17](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.16...v1.0.17) (2021-07-14) 1364 | 1365 | 1366 | ### Bug Fixes 1367 | 1368 | * upgrade all packages ([6e560ad](https://github.com/CoCreate-app/CoCreate-google-maps/commit/6e560ad2de229a7e01efc9f6ff63de4f39d07242)) 1369 | 1370 | ## [1.0.16](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.15...v1.0.16) (2021-07-13) 1371 | 1372 | 1373 | ### Bug Fixes 1374 | 1375 | * add yarn lockfile to git ignore ([40de479](https://github.com/CoCreate-app/CoCreate-google-maps/commit/40de479b0aad4535550fd72bf4ea469fca002a67)) 1376 | * remove yarn.lock ([195420f](https://github.com/CoCreate-app/CoCreate-google-maps/commit/195420fec0958043aabfae3da54b354686da37ae)) 1377 | 1378 | ## [1.0.15](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.14...v1.0.15) (2021-07-10) 1379 | 1380 | 1381 | ### Bug Fixes 1382 | 1383 | * gitignore all logs ([a9aa9ff](https://github.com/CoCreate-app/CoCreate-google-maps/commit/a9aa9ffe4cb16a9323dd5aa13d665fb682fe8961)) 1384 | 1385 | ## [1.0.14](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.13...v1.0.14) (2021-06-30) 1386 | 1387 | 1388 | ### Bug Fixes 1389 | 1390 | * Update readme.md ([9e4ca6c](https://github.com/CoCreate-app/CoCreate-google-maps/commit/9e4ca6cd884c1819f43155e79b5588aa3c0d7666)) 1391 | 1392 | ## [1.0.13](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.12...v1.0.13) (2021-06-30) 1393 | 1394 | 1395 | ### Bug Fixes 1396 | 1397 | * automated and manual workflows ([d2026ed](https://github.com/CoCreate-app/CoCreate-google-maps/commit/d2026ede4c9f1b11dc06a8fa32dc0fc2c7465a18)) 1398 | 1399 | ## [1.0.12](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.11...v1.0.12) (2021-06-25) 1400 | 1401 | 1402 | ### Bug Fixes 1403 | 1404 | * latest version numbers applied to all cocreate packages ([afc0a3f](https://github.com/CoCreate-app/CoCreate-google-maps/commit/afc0a3f864b4ac8ec667f8fdc43993a7fd56a3ef)) 1405 | 1406 | ## [1.0.11](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.10...v1.0.11) (2021-06-24) 1407 | 1408 | 1409 | ### Bug Fixes 1410 | 1411 | * package versioningto 1.0.0 ([b0130e9](https://github.com/CoCreate-app/CoCreate-google-maps/commit/b0130e9360df3b7da658a698b1668d059a47da1b)) 1412 | 1413 | ## [1.0.10](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.9...v1.0.10) (2021-06-24) 1414 | 1415 | 1416 | ### Bug Fixes 1417 | 1418 | * update all [@cocreate](https://github.com/cocreate) to use latest versions ([9e46b63](https://github.com/CoCreate-app/CoCreate-google-maps/commit/9e46b6315e7c44b1a26dc0cf2be8c8fd5179533d)) 1419 | 1420 | ## [1.0.9](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.8...v1.0.9) (2021-06-17) 1421 | 1422 | 1423 | ### Bug Fixes 1424 | 1425 | * added header for seo ([7f431f9](https://github.com/CoCreate-app/CoCreate-google-maps/commit/7f431f9a0b6d46ff6f6253f9dd8b8aa2b92ae4c4)) 1426 | 1427 | ## [1.0.8](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.7...v1.0.8) (2021-06-06) 1428 | 1429 | 1430 | ### Bug Fixes 1431 | 1432 | * update packages, add uuid, add data-parse to demos ([878e6a9](https://github.com/CoCreate-app/CoCreate-google-maps/commit/878e6a9188476c0f3987fec2b5e7a40b68d4887f)) 1433 | * update packages, add uuid, add data-parse to demos ([dccfc15](https://github.com/CoCreate-app/CoCreate-google-maps/commit/dccfc15c71b3918079272abca95901f474a29d2d)) 1434 | 1435 | ## [1.0.7](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.6...v1.0.7) (2021-05-08) 1436 | 1437 | 1438 | ### Bug Fixes 1439 | 1440 | * add css auto parse and save to docs. ([f5bea5b](https://github.com/CoCreate-app/CoCreate-google-maps/commit/f5bea5b1265dd58e44fa3c7a83990db2d93a0bf4)) 1441 | 1442 | ## [1.0.6](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.5...v1.0.6) (2021-04-27) 1443 | 1444 | 1445 | ### Bug Fixes 1446 | 1447 | * add host in docs ([3cda406](https://github.com/CoCreate-app/CoCreate-google-maps/commit/3cda4062f6ff3b2961fd3f4ab04c988a0af540b2)) 1448 | 1449 | ## [1.0.5](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.4...v1.0.5) (2021-04-27) 1450 | 1451 | 1452 | ### Bug Fixes 1453 | 1454 | * Update to readme, demo, added cdn scripts ([1b050cf](https://github.com/CoCreate-app/CoCreate-google-maps/commit/1b050cf5c6406ba8a8801d77f68dc702290a7e9e)) 1455 | 1456 | ## [1.0.4](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.3...v1.0.4) (2021-04-25) 1457 | 1458 | 1459 | ### Bug Fixes 1460 | 1461 | * upgrade dependancies and fixed a few minor bugs ([3636d3b](https://github.com/CoCreate-app/CoCreate-google-maps/commit/3636d3b47734225fbfb6ff0cce07fd8ccd07c038)) 1462 | 1463 | ## [1.0.3](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.2...v1.0.3) (2021-04-23) 1464 | 1465 | 1466 | ### Bug Fixes 1467 | 1468 | * readme and documentation. Removed securitykeys ([afcee4c](https://github.com/CoCreate-app/CoCreate-google-maps/commit/afcee4cecdc94083ee0969eb560b2339545f355b)) 1469 | 1470 | ## [1.0.2](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.1...v1.0.2) (2021-04-19) 1471 | 1472 | 1473 | ### Bug Fixes 1474 | 1475 | * ci and build process ([2fde08b](https://github.com/CoCreate-app/CoCreate-google-maps/commit/2fde08bffbcc4c42bfd8d50f2c296d00534694f8)) 1476 | * npm publish and cdn deployment ([c59c09d](https://github.com/CoCreate-app/CoCreate-google-maps/commit/c59c09d670aac29411cea7138ebfabd8fd315a84)) 1477 | 1478 | ## [1.0.1](https://github.com/CoCreate-app/CoCreate-google-maps/compare/v1.0.0...v1.0.1) (2021-03-31) 1479 | 1480 | 1481 | ### Bug Fixes 1482 | 1483 | * remove yarn.lock and package-lock.json ([12685f5](https://github.com/CoCreate-app/CoCreate-google-maps/commit/12685f5d55ff586c5aeb3edb4d62b90f96e6b3b1)) 1484 | 1485 | # 1.0.0 (2021-03-29) 1486 | 1487 | 1488 | ### Bug Fixes 1489 | 1490 | * Package Paths ([c26503e](https://github.com/CoCreate-app/CoCreate-google-maps/commit/c26503e70c194e33946293294c2dba82c0acb8dd)) 1491 | 1492 | 1493 | ### Features 1494 | 1495 | * Initial Release ([415fa0d](https://github.com/CoCreate-app/CoCreate-google-maps/commit/415fa0de371e22d53249a7d1092a3c169fcdcfe5)) 1496 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to CoCreate-google-maps 2 | 3 | This project is work of [many contributors](https://github.com/CoCreate-app/CoCreate-google-maps/graphs/contributors). 4 | You're encouraged to submit [pull requests](https://github.com/CoCreate-app/CoCreate-google-maps/pulls), 5 | [propose features and discuss issues](https://github.com/CoCreate-app/CoCreate-google-maps/issues). 6 | 7 | In the examples below, substitute your Github username for `contributor` in URLs. 8 | 9 | ## Fork the Project 10 | 11 | Fork the [project on Github](https://github.com/CoCreate-app/CoCreate-google-maps) and check out your copy. 12 | 13 | ``` 14 | git google-maps https://github.com/contributor/CoCreate-google-maps.git 15 | cd CoCreate-google-maps 16 | git remote add upstream https://github.com/CoCreate-app/CoCreate-google-maps.git 17 | ``` 18 | 19 | ## Create a Topic Branch 20 | 21 | Make sure your fork is up-to-date and create a topic branch for your feature or bug fix on dev branch. 22 | 23 | ``` 24 | git checkout dev 25 | git pull upstream dev 26 | git checkout -b my-feature-branch 27 | ``` 28 | 29 | ## Write Tests 30 | 31 | Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build. 32 | 33 | We definitely appreciate pull requests that highlight or reproduce a problem, even without a fix. 34 | 35 | ## Write Code 36 | 37 | Implement your feature or bug fix. 38 | 39 | ## Write Documentation 40 | 41 | Document any external behavior in the [README](README.md). 42 | 43 | ## Commit Changes 44 | 45 | Make sure git knows your name and email address: 46 | 47 | ``` 48 | git config --global user.name "Your Name" 49 | git config --global user.email "contributor@example.com" 50 | ``` 51 | 52 | We use [semantic-release](https://github.com/semantic-release/semantic-release) as process to generate changelog 53 | and to release. Write meaningful commits according to 54 | [Commit Message Formats](https://github.com/semantic-release/semantic-release#commit-message-format) is important. 55 | 56 | ``` 57 | git add ... 58 | git commit -am "commit-type(optional topic): a meaningful message" 59 | ``` 60 | 61 | Here is an example of the release type that should be done based on a [semantic-release](https://github.com/semantic-release/semantic-release): 62 | 63 | | Commit message | Release type | 64 | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------- | 65 | | `fix(pencil): stop graphite breaking when too much pressure applied` | Patch Release | 66 | | `feat(pencil): add 'graphiteWidth' option` | ~~Minor~~ Feature Release | 67 | | `perf(pencil): remove graphiteWidth option`

`BREAKING CHANGE: The graphiteWidth option has been removed.`
`The default graphite width of 10mm is always used for performance reasons.` | ~~Major~~ Breaking Release | 68 | 69 | 70 | ## Push 71 | 72 | ``` 73 | git push origin my-feature-branch 74 | ``` 75 | 76 | ## Make a Pull Request 77 | 78 | Go to [https://github.com/CoCreate-app/CoCreate-google-maps](https://github.com/CoCreate-app/CoCreate-google-maps) and select your feature branch. 79 | Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days. 80 | 81 | ## Rebase 82 | 83 | If you've been working on a change for a while, rebase with upstream/dev. 84 | 85 | ``` 86 | git fetch upstream 87 | git rebase upstream/dev 88 | git push origin my-feature-branch -f 89 | ``` 90 | 91 | ## Be Patient 92 | 93 | It's likely that your change will not be merged and that the nitpicky maintainers will ask you to do more, or fix seemingly benign problems. Hang in there! 94 | 95 | ## Thank You 96 | 97 | Please do know that we really appreciate and value your time and work. We love you, really. -------------------------------------------------------------------------------- /CoCreate.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "organization_id": "", 3 | "key": "", 4 | "host": "", 5 | "sources": [ 6 | { 7 | "array": "files", 8 | "object": { 9 | "_id": "60283a7771064611a678a1a5", 10 | "name": "index.html", 11 | "path": "/docs/google-maps", 12 | "pathname": "/docs/google-maps/index.html", 13 | "src": "{{./docs/index.html}}", 14 | "host": [ 15 | "*" 16 | ], 17 | "directory": "google-maps", 18 | "content-type": "{{content-type}}", 19 | "public": "true" 20 | } 21 | } 22 | ] 23 | }; -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 CoCreate LLC 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CoCreate-google-maps 2 | 3 | A simple google-maps component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API. Take it for a spin in our [playground!](https://cocreate.app/docs/google-maps) 4 | 5 | ![minified](https://img.badgesize.io/https://cdn.cocreate.app/google-maps/latest/CoCreate-google-maps.min.js?style=flat-square&label=minified&color=orange) 6 | ![gzip](https://img.badgesize.io/https://cdn.cocreate.app/google-maps/latest/CoCreate-google-maps.min.js?compression=gzip&style=flat-square&label=gzip&color=yellow) 7 | ![brotli](https://img.badgesize.io/https://cdn.cocreate.app/google-maps/latest/CoCreate-google-maps.min.js?compression=brotli&style=flat-square&label=brotli) 8 | ![GitHub latest release](https://img.shields.io/github/v/release/CoCreate-app/CoCreate-google-maps?style=flat-square) 9 | ![License](https://img.shields.io/github/license/CoCreate-app/CoCreate-google-maps?style=flat-square) 10 | ![Hiring](https://img.shields.io/static/v1?style=flat-square&label=&message=Hiring&color=blueviolet) 11 | 12 | ![CoCreate-google-maps](https://cdn.cocreate.app/docs/CoCreate-google-maps.gif) 13 | 14 | ## [Docs & Demo](https://cocreate.app/docs/google-maps) 15 | 16 | For a complete guide and working demo refer to the [doumentation](https://cocreate.app/docs/google-maps) 17 | 18 | ## CDN 19 | 20 | ```html 21 | 22 | ``` 23 | 24 | ```html 25 | 26 | ``` 27 | 28 | ## NPM 29 | 30 | ```shell 31 | $ npm i @cocreate/google-maps 32 | ``` 33 | 34 | ## yarn 35 | 36 | ```shell 37 | $ yarn install @cocreate/google-maps 38 | ``` 39 | 40 | # Table of Contents 41 | 42 | - [Table of Contents](#table-of-contents) 43 | - [Announcements](#announcements) 44 | - [Roadmap](#roadmap) 45 | - [How to Contribute](#how-to-contribute) 46 | - [About](#about) 47 | - [License](#license) 48 | 49 | 50 | 51 | # Announcements 52 | 53 | All updates to this library are documented in our [CHANGELOG](https://github.com/CoCreate-app/CoCreate-google-maps/blob/master/CHANGELOG.md) and [releases](https://github.com/CoCreate-app/CoCreate-google-maps/releases). You may also subscribe to email for releases and breaking changes. 54 | 55 | 56 | 57 | # Roadmap 58 | 59 | If you are interested in the future direction of this project, please take a look at our open [issues](https://github.com/CoCreate-app/CoCreate-google-maps/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-google-maps/pulls). We would love to hear your feedback. 60 | 61 | 62 | 63 | # About 64 | 65 | CoCreate-google-maps is guided and supported by the CoCreate Developer Experience Team. 66 | 67 | Please Email the Developer Experience Team [here](mailto:develop@cocreate.app) in case of any queries. 68 | 69 | CoCreate-google-maps is maintained and funded by CoCreate. The names and logos for CoCreate are trademarks of CoCreate, LLC. 70 | 71 | 72 | 73 | # How to Contribute 74 | 75 | We encourage contribution to our libraries (you might even score some nifty swag), please see our [CONTRIBUTING](https://github.com/CoCreate-app/CoCreate-google-maps/blob/master/CONTRIBUTING.md) guide for details. 76 | 77 | We want this library to be community-driven, and CoCreate led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create [issues](https://github.com/CoCreate-app/CoCreate-google-maps/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-google-maps/pulls) or merely upvote or comment on existing issues or pull requests. 78 | 79 | We appreciate your continued support, thank you! 80 | 81 | 82 | 83 | # License 84 | 85 | [The MIT License (MIT)](https://github.com/CoCreate-app/CoCreate-google-maps/blob/master/LICENSE) 86 | -------------------------------------------------------------------------------- /demo/autocomplete.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Google Maps API Demo 7 | 8 | 9 |
10 | 16 | 17 | 23 | 29 | 30 |
31 | 32 |
33 | 34 |
38 | 39 | 40 | 46 | 47 | 48 | 54 | 55 | 62 | 63 | 64 | 72 | 73 | 74 | 82 | 83 | 84 | 93 | 94 | 95 | 101 | 102 | 103 | 112 | 113 | 114 | 123 | 124 | 125 | 131 |
132 | 133 | 134 | 135 | 136 | -------------------------------------------------------------------------------- /demo/current-location.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Current Location | CoCreate 8 | 9 | 10 | 15 | 16 | 17 | 18 | 19 | 30 | 31 | 32 |
44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 63 | 64 | 67 | 70 | 71 | 72 | 73 |

User Name

CurrentLocation

Document_id

65 |

No Name

66 |
68 |

corrds

69 |

Document_id

74 | 75 |
81 | 82 | 83 | 84 | 89 | 90 | 97 | 98 | 104 | 105 | 106 |
111 | 112 | 116 | 119 | 120 | 121 | 122 | 123 | -------------------------------------------------------------------------------- /demo/direction.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Google Search Autocomplete 6 | 7 | 12 | 13 | 14 | 19 | 20 | 21 | 22 |
23 |
24 |
25 | 35 | 42 | 49 |
50 |
51 |
52 |
57 |
58 | 68 | 75 | 82 |
83 |
84 | 90 | 91 |
92 |
93 | Add waypoint 100 |
101 |
102 |
107 |
108 | 118 | 125 | 132 |
133 |
134 | 140 | 141 |
142 |
143 | Add waypoint 150 |
151 | 162 | 169 | 176 |
177 |
178 | 179 | 180 |
181 |
185 | 186 |
187 | 194 | 195 | 201 | 202 | 208 | 209 | 215 | 216 |
217 | 218 |
219 |
220 | 221 | 227 |
228 | 229 | 235 |
236 | 237 |
238 | 244 | 245 | 251 | 252 | 258 | 259 | 265 | 266 | 272 | 273 |
274 | 275 |
276 | 282 | 283 | 289 | 290 |
291 | 292 |
293 |
294 | 295 | 301 |
302 | 303 |
304 | 310 | 311 | 317 | 318 | 324 | 325 |
326 | 327 |
328 | 334 | 335 | 341 | 342 |
343 | 347 | 348 |
349 | 353 | 354 |
355 | 359 | 360 |
361 | 365 | 366 |
367 | 371 | 372 |
373 | 374 | 378 | 381 | 382 | 383 |
384 | 385 | 386 | -------------------------------------------------------------------------------- /demo/fleet-tracking.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Fleet tracking 8 | 9 | 10 | 15 | 16 | 17 | 18 | 19 | 30 | 31 | 32 |
44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 63 | 64 | 67 | 70 | 71 | 72 | 73 |

User Name

CurrentLocation

Document_id

65 |

No Name

66 |
68 |

corrds

69 |

Document_id

74 | 75 |
81 | 82 | 83 | 84 | 89 | 90 | 97 | 98 | 104 | 105 | 106 |
111 | 112 | 116 | 119 | 120 | 121 | 122 | 123 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Google Maps API 7 | 8 | 9 |
10 | 16 | 17 | 23 | 29 | 30 |
31 | 32 |
33 | 34 |
38 | 39 | 40 | 46 | 47 | 48 | 54 | 55 | 62 | 63 | 64 | 72 | 73 | 74 | 82 | 83 | 84 | 93 | 94 | 95 | 101 | 102 | 103 | 112 | 113 | 114 | 123 | 124 | 125 | 131 |
132 | 133 |
134 | 135 | 141 | 147 | 148 | 149 | 154 | 155 | 156 | 157 |
158 | 159 | 160 | 161 | 162 | -------------------------------------------------------------------------------- /demo/polyline_algorithm_test.html: -------------------------------------------------------------------------------- 1 | 2 | 87 | -------------------------------------------------------------------------------- /demo/search.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Google Search Autocomplete 6 | 7 | 8 | 9 | 10 |
11 |
16 |
17 | 21 | 22 |
23 |
24 | findPlaceFromQuery
31 | findPlaceFromPhoneNumber
37 | nearbySearch
43 | textSearch
49 | 50 | 51 | LatLngBounds
58 | Radius
64 | LatLng(only for find from query or phone 70 | number)
71 |

Coodinate & Radius

72 | Latitude
76 | Longitude
80 | Radius
84 |

85 | MinPriceLevel
89 | MaxPriceLevel
93 | Name
97 | OpenNow
101 | RankByDistance
105 |
106 |
107 | 108 | 112 | 115 | 116 | 117 | 118 | 119 | 120 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | CoCreate-google-maps Documentation | CoCreateJS 8 | 13 | 16 | 19 | 20 | 23 | 24 | 32 | 33 | 34 | 35 | 36 | 37 | 45 | 52 | 56 |
57 |
58 |
62 |
64 |
65 |

CoCreate-google-maps

66 |
67 |
69 |
79 | 99 | 105 |
106 | 112 |
113 |
114 |

116 | A headless vinilla javascript micro component. Easy 117 | configuration using HTML5 attributes or Javscript api. 118 |

119 |
120 |
122 |
128 | 132 |

Install

133 | 138 |
139 |
140 |
npm i @cocreate/google-maps
141 |

142 | Or you can use cdn link: 143 |

144 |
<script>https://cdn.cocreate.app/google-maps/latest/CoCreate-google-maps.min.js</script>
145 | 146 |
152 | 156 |

Usage

157 | 162 |
163 |
164 |
165 |

166 | This is google-maps usage 167 |

168 | 169 |
170 |
<div></div>
171 |
172 |

173 | This is google-maps usage 174 |

175 |

176 | This is google-maps usage 177 |

178 |
179 |
185 | 189 |

Attributes

190 | 195 |
196 |
197 |
    198 |
  • 200 |

    201 | google-maps 202 | string 205 | optional 208 |

    209 |

    google-maps-attribute

    210 |
  • 211 |
  • 213 |

    214 | google-maps 215 | string 218 | optional 221 |

    222 |

    google-maps-attribute

    223 |
  • 224 |
225 |
226 | 227 |
229 | 230 |
236 | 240 |

Demo

241 | 246 |
247 |
248 |
250 | 251 |
254 |
258 | 270 |
273 |
274 | 275 |
278 |
279 |
280 | 281 |
283 | 294 | 304 | 311 | 321 | 325 |
326 |
327 | 328 |
329 |
330 |
331 | 337 |
338 | 339 | 340 | 341 | 342 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@cocreate/google-maps", 3 | "version": "1.12.3", 4 | "description": "A simple google-maps component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.", 5 | "keywords": [ 6 | "google-maps", 7 | "cocreate", 8 | "low-code-framework", 9 | "no-code-framework", 10 | "cocreatejs", 11 | "cocreatejs-component", 12 | "cocreate-framework", 13 | "no-code", 14 | "low-code", 15 | "collaborative-framework", 16 | "realtime", 17 | "realtime-framework", 18 | "collaboration", 19 | "shared-editing", 20 | "html5-framework", 21 | "javascript-framework" 22 | ], 23 | "publishConfig": { 24 | "access": "public" 25 | }, 26 | "scripts": { 27 | "start": "npx webpack --config webpack.config.js", 28 | "build": "npx webpack --mode=production --config webpack.config.js", 29 | "dev": "npx webpack --config webpack.config.js --watch", 30 | "postinstall": "node -e \"const { execSync } = require('child_process'); try { execSync('coc --version', { stdio: 'ignore' }); } catch (error) { try { execSync('npm install -g @cocreate/cli', { stdio: 'inherit' }); console.log('Installed \"@cocreate/cli\" globally.'); } catch (error) { console.error('Failed to install \"@cocreate/cli\" globally:', error); } }\"" 31 | }, 32 | "repository": { 33 | "type": "git", 34 | "url": "git+https://github.com/CoCreate-app/CoCreate-google-maps.git" 35 | }, 36 | "author": "CoCreate LLC", 37 | "license": "MIT", 38 | "bugs": { 39 | "url": "https://github.com/CoCreate-app/CoCreate-google-maps/issues" 40 | }, 41 | "homepage": "https://cocreate.app/docs/google-maps", 42 | "funding": { 43 | "type": "GitHub Sponsors ❤", 44 | "url": "https://github.com/sponsors/CoCreate-app" 45 | }, 46 | "main": "./src/index.js", 47 | "devDependencies": { 48 | "css-loader": "^5.1.3", 49 | "esbuild": "^0.25.2", 50 | "esbuild-loader": "^4.3.0", 51 | "mini-css-extract-plugin": "^1.5.0", 52 | "webpack": "^5.24.4", 53 | "webpack-cli": "^4.5.0", 54 | "webpack-log": "^3.0.1" 55 | }, 56 | "dependencies": { 57 | "@googlemaps/js-api-loader": "^1.12.8" 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | tabWidth: 4, 3 | semi: true, 4 | trailingComma: "none", 5 | bracketSameLine: true, 6 | useTabs: true, 7 | overrides: [ 8 | { 9 | files: ["*.json", "*.yml", "*.yaml"], 10 | options: { 11 | tabWidth: 2, 12 | useTabs: false 13 | }, 14 | } 15 | ], 16 | }; -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dryRun: false, 3 | branches: ["master"], 4 | plugins: [ 5 | "@semantic-release/commit-analyzer", 6 | "@semantic-release/release-notes-generator", 7 | [ 8 | "@semantic-release/changelog", 9 | { 10 | changelogFile: "CHANGELOG.md", 11 | }, 12 | ], 13 | "@semantic-release/npm", 14 | "@semantic-release/github", 15 | [ 16 | "@semantic-release/git", 17 | { 18 | assets: ["CHANGELOG.md", "package.json"], 19 | }, 20 | ], 21 | ], 22 | }; -------------------------------------------------------------------------------- /src/animate.js: -------------------------------------------------------------------------------- 1 | import { CoCreateMap } from './map.js'; 2 | 3 | /* global CoCreateMap google */ 4 | var CoCreateMapAnimate = function () { 5 | // variables 6 | this.animators = []; 7 | this.icon = { "path": "M29.395,0H17.636c-3.117,0-5.643,3.467-5.643,6.584v34.804c0,3.116,2.526,5.644,5.643,5.644h11.759 c3.116,0,5.644-2.527,5.644-5.644V6.584C35.037,3.467,32.511,0,29.395,0z M34.05,14.188v11.665l-2.729,0.351v-4.806L34.05,14.188z M32.618,10.773c-1.016,3.9-2.219,8.51-2.219,8.51H16.631l-2.222-8.51C14.41,10.773,23.293,7.755,32.618,10.773z M15.741,21.713 v4.492l-2.73-0.349V14.502L15.741,21.713z M13.011,37.938V27.579l2.73,0.343v8.196L13.011,37.938z M14.568,40.882l2.218-3.336 h13.771l2.219,3.336H14.568z M31.321,35.805v-7.872l2.729-0.355v10.048L31.321,35.805", "color": "#e50202" }; 8 | 9 | // selectors 10 | this.mapDivSelector = ".google_map"; 11 | // initialize 12 | 13 | this.init(); 14 | 15 | // functions 16 | this.__proto__.init = function () { 17 | let maps = document.querySelectorAll(".google_map[data-map_id]"); 18 | for (let map of maps) { 19 | this.animators[map.dataset.map_id] = {}; 20 | } 21 | }; 22 | 23 | // this.errHandler = function(err, _this) { 24 | // _this.__proto__.errHandler(err); 25 | // }; 26 | 27 | this.__proto__.showPosition = function () { 28 | console.log("showing Position") 29 | let option = { timeout: 5000 }; 30 | if (navigator.geolocation) this.watchID = navigator.geolocation.watchPosition( 31 | position => { 32 | this.showLocation(position) 33 | }, 34 | err => { 35 | this.errHandler(err) 36 | }, option); 37 | else alert("Sorry, your browser does not support HTML5 geolocation."); 38 | }; 39 | 40 | this.__proto__.showLocation = function (position) { 41 | if (!this.checkAnimator('simon')) { 42 | this.__proto__.showLocation(position); 43 | } 44 | this.addAnimator('simon', { 'lat': position.coords.latitude, 'lng': position.coords.longitude }) 45 | } 46 | 47 | 48 | this.errorCallback = function (error) { 49 | if (error.code == 1) console.log("You've decided not to share your position, but it's OK. We won't ask you again."); 50 | else if (error.code == 2) console.log("The network is down or the positioning service can't be reached."); 51 | else if (error.code == 3) console.log("The attempt timed out before it could get the location data."); 52 | else console.log("Geolocation failed due to unknown error."); 53 | }; 54 | 55 | this.checkAnimator = function (key, map_id = 0) { 56 | return this.animators[map_id][key] !== undefined; 57 | }; 58 | 59 | this.removeAnimator = function (key, map_id = 0) { 60 | this.animators[map_id][key]['marker'].setMap(null); 61 | }; 62 | 63 | this.addAnimator = function (key, location, icon_obj, map_id = 0) { 64 | icon_obj = icon_obj === undefined ? this.icon : icon_obj; 65 | let angle = 0; 66 | if (this.checkAnimator(key)) { 67 | let icon = { // animator icon 68 | path: icon_obj.path, 69 | scale: 0.5, 70 | fillColor: icon_obj.color, //<-- Animator Color, you can change it 71 | fillOpacity: 1, 72 | strokeWeight: 1, 73 | anchor: new google.maps.Point(0, 5), 74 | rotation: angle//<-- Animator angle 75 | }; 76 | console.log(icon); 77 | this.animators[map_id][key]['marker'].setIcon(icon); 78 | this.animatedMove(key, location); 79 | } 80 | else { 81 | let icon = { // animator icon 82 | path: icon_obj.path, 83 | scale: 0.5, 84 | fillColor: icon_obj.color, //<-- Animator Color, you can change it 85 | fillOpacity: 1, 86 | strokeWeight: 1, 87 | anchor: new google.maps.Point(0, 5), 88 | rotation: angle//<-- Animator angle 89 | }; 90 | // var curLocation = { lat: location.lat, lng: location.lng }; 91 | 92 | let marker_id = this.setMarker(map_id, { 93 | position: location, 94 | icon: icon, 95 | title: key 96 | }); 97 | //if (key == getCookie('user_email')){ 98 | this.maps[map_id].setCenter(this.markers[map_id][marker_id].getPosition()); 99 | //} 100 | this.animators[map_id][key] = {}; 101 | this.animators[map_id][key]['loc'] = location; 102 | this.animators[map_id][key]['angle'] = angle; 103 | this.animators[map_id][key]['timestamp'] = new Date(new Date().toISOString()); 104 | this.animators[map_id][key]['marker'] = this.markers[map_id][marker_id]; 105 | this.animators[map_id][key]['icon'] = icon_obj; 106 | } 107 | }; 108 | 109 | this.animatedMove = function (key, locMoveto, map_id = 0) { 110 | //this.removeAnimator(key); 111 | let animator = this.animators[map_id][key]; 112 | let marker = animator['marker']; 113 | let icon = animator['icon']; 114 | let current = marker.position; 115 | let angle = this.bearingBetweenLocations(animator['loc'], locMoveto); 116 | if (!locMoveto.timestamp) locMoveto['timestamp'] = new Date(new Date().toISOString()); 117 | 118 | let deltalat = (locMoveto.lat - current.lat()) / 100; 119 | let deltalng = (locMoveto.lng - current.lng()) / 100; 120 | let deltaangle = this.deltaAngle(angle, animator.angle) / 100; 121 | let deltatime = (locMoveto["timestamp"].getSeconds() - animator.timestamp.getSeconds()); 122 | let pangle = animator.angle; 123 | pangle = this.currentAngle(pangle, deltaangle); 124 | let delay = deltatime; 125 | // let d = new Date(); 126 | // let p = d.getTime(); 127 | for (let i = 0; i < 100; i++) { 128 | (function (ind) { 129 | setTimeout( 130 | function () { 131 | let latlng = null; 132 | let myicon = null; 133 | let lat = marker.position.lat(); 134 | let lng = marker.position.lng(); 135 | lat += deltalat; 136 | lng += deltalng; 137 | 138 | // pangle += deltaangle; 139 | myicon = { // animator icon 140 | path: icon['path'], 141 | scale: 0.5, 142 | fillColor: icon['color'], //<-- Animator Color, you can change it 143 | fillOpacity: 1, 144 | strokeWeight: 1, 145 | anchor: new google.maps.Point(0, 5), 146 | rotation: pangle //<-- Animator angle 147 | }; 148 | 149 | latlng = new google.maps.LatLng(lat, lng); 150 | marker.setPosition(latlng); 151 | marker.setIcon(myicon); 152 | // d = new Date(); 153 | }, ind * delay * 10); 154 | })(i); 155 | } 156 | 157 | this.animators[map_id][key]['loc'] = locMoveto; 158 | this.animators[map_id][key]['angle'] = angle; 159 | this.animators[map_id][key]['timestamp'] = locMoveto['timestamp']; 160 | this.animators[map_id][key]['marker'] = marker; 161 | }; 162 | 163 | this.bearingBetweenLocations = function (loc1, loc2) { 164 | let RADTODEG = 180 / Math.PI; 165 | let lat1 = loc1.lat / RADTODEG; 166 | let long1 = loc1.lng / RADTODEG; 167 | let lat2 = loc2.lat / RADTODEG; 168 | let long2 = loc2.lng / RADTODEG; 169 | let dLon = (long2 - long1); 170 | let y = Math.sin(dLon) * Math.cos(lat2); 171 | let x = Math.cos(lat1) * Math.sin(lat2) - Math.sin(lat1) * Math.cos(lat2) * Math.cos(dLon); 172 | let brng = Math.atan2(y, x); 173 | brng = brng * RADTODEG; 174 | brng = (brng + 360) % 360; 175 | return brng; 176 | }; 177 | 178 | this.deltaAngle = function (CurrentAngle, PreviousAngle) { 179 | let delta = CurrentAngle - PreviousAngle; 180 | return delta; 181 | }; 182 | 183 | this.currentAngle = function (current, delta) { 184 | if (current + delta < 0) { 185 | return 360 + (current + delta); 186 | } else if (current + delta > 360) { 187 | return (current + delta) % 360; 188 | } else { 189 | return current + delta; 190 | } 191 | }; 192 | 193 | // this.simulate = function(){ 194 | // cocreateLocation.addAnimator('jean',{'lat':20.9182675,'lng':-100.7446703}) 195 | // // entre 0 y 9 196 | // for(var i=0;i<=100;i++){ 197 | // setTimeout(function(){ 198 | // var lat = parseFloat('20.918'+Math.floor(Math.random() * 10)+'675'); 199 | // var lng = parseFloat('-100.744'+Math.floor(Math.random() * 10)+'703'); 200 | // cocreateLocation.addAnimator('jean',{'lat':lat,'lng':lng}) 201 | // },5000); 202 | // } 203 | // }; 204 | 205 | CoCreateMap.call(this); 206 | }; 207 | 208 | CoCreateMapAnimate.prototype = Object.create(CoCreateMap.prototype); 209 | CoCreateMapAnimate.prototype.constructor = CoCreateMapAnimate; 210 | 211 | // functions for prototype 212 | 213 | // declaration 214 | export { CoCreateMapAnimate }; -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import Observer from "@cocreate/observer"; 2 | import Actions from "@cocreate/actions"; 3 | import Api from "@cocreate/api"; 4 | 5 | const name = "google-maps"; 6 | const GOOGLE_API_KEY = "AIzaSyCXRaA3liul4_0D5MXLybx9s3s_o_Q2opI"; 7 | let scriptLoaded = false; 8 | 9 | // Track already loaded libraries 10 | const loadedLibraries = new Map(); 11 | 12 | async function init() { 13 | await loadGoogleMaps(); // Load core script 14 | initElements(); // Initialize elements after loading core 15 | } 16 | 17 | // Load Google Maps script initially (core only) 18 | function loadGoogleMaps() { 19 | return new Promise((resolve, reject) => { 20 | if (scriptLoaded) { 21 | resolve(window.google.maps); 22 | return; 23 | } 24 | 25 | const script = document.createElement("script"); 26 | script.src = `https://maps.googleapis.com/maps/api/js?key=${GOOGLE_API_KEY}`; 27 | script.async = true; 28 | script.defer = true; 29 | 30 | script.onload = () => { 31 | scriptLoaded = true; 32 | console.log("Google Maps core script loaded successfully."); 33 | resolve(window.google.maps); 34 | }; 35 | 36 | script.onerror = () => 37 | reject(new Error("Failed to load Google Maps core script.")); 38 | 39 | document.head.appendChild(script); 40 | }); 41 | } 42 | 43 | // Load additional libraries dynamically using importLibrary 44 | async function loadLibrary(library) { 45 | // Check if the library's promise is already stored in the Map 46 | if (loadedLibraries.has(library)) { 47 | return loadedLibraries.get(library); // Return the existing promise 48 | } 49 | 50 | // Attempt to load the library using the `importLibrary` 51 | const libraryPromise = window.google.maps 52 | .importLibrary(library) 53 | .then(() => { 54 | console.log( 55 | `Google Maps library "${library}" loaded successfully.` 56 | ); 57 | loadedLibraries.set(library, libraryPromise); // Confirm the library is loaded by storing the promise 58 | return window.google.maps[library]; // Return the loaded library instance if you need it 59 | }) 60 | .catch((error) => { 61 | console.error( 62 | `Failed to load Google Maps library "${library}":`, 63 | error 64 | ); 65 | loadedLibraries.delete(library); // Remove the library if loading failed 66 | throw error; // Rethrow the error for further handling 67 | }); 68 | 69 | // Store the promise in the Map for caching 70 | loadedLibraries.set(library, libraryPromise); 71 | 72 | // Await the resolution of the library before returning 73 | const resolvedLibrary = await libraryPromise; 74 | return resolvedLibrary; 75 | } 76 | 77 | // Initialize Google Maps elements dynamically 78 | function initElements(element) { 79 | if ( 80 | element && 81 | !(element instanceof HTMLCollection) && 82 | !(element instanceof NodeList) && 83 | !Array.isArray(element) 84 | ) 85 | element = [element]; 86 | else if (!element) { 87 | element = document.querySelectorAll(`[${name}]`); 88 | } 89 | 90 | if (!google || !google.maps) { 91 | console.error("Google Maps API not loaded properly."); 92 | return; 93 | } 94 | 95 | for (let i = 0; i < element.length; i++) { 96 | const method = element[i].getAttribute(name); 97 | const key = element[i].getAttribute(`${name}-key`); 98 | 99 | if (googleMapsHandlers[method]) { 100 | googleMapsHandlers[method](method, element[i], key); 101 | } else { 102 | console.warn(`No handler registered for ${name} type: ${method}`); 103 | } 104 | } 105 | } 106 | 107 | // Generic handler registry 108 | const googleMapsHandlers = { 109 | places: async (method, element, key) => { 110 | await loadLibrary(method); // Ensure the Places library is loaded 111 | if (key === "autocomplete") { 112 | const autocomplete = new google.maps.places.Autocomplete(element); 113 | autocomplete.addListener("place_changed", () => { 114 | const data = { [name]: autocomplete.getPlace() }; 115 | let form = element.closest("form"); 116 | CoCreate.api.setData({ name, method, form, data }); 117 | }); 118 | } 119 | }, 120 | maps: async (method, element, key) => { 121 | await loadLibrary("maps"); // Ensure the Maps library is loaded 122 | 123 | // Process only elements with google-maps-key="map" 124 | if (key === "map") { 125 | const form = element.closest("form"); 126 | 127 | // Generate the options object from the form and element attributes 128 | const data = await CoCreate.api.getData({ 129 | name, 130 | method, 131 | element, 132 | form 133 | }); 134 | 135 | // Create the Google Map 136 | new google.maps.Map(element, data); 137 | } else { 138 | console.warn( 139 | `Element with key "${key}" is not eligible for Map rendering.` 140 | ); 141 | } 142 | }, 143 | roads: async (element) => { 144 | await loadLibrary("roads"); // Ensure the Roads library is loaded 145 | console.log("Initialize Roads API for:", element); 146 | } 147 | }; 148 | 149 | googleMapsHandlers.geocoder = async (action) => { 150 | if (typeof action === "string") return; 151 | let { method, element, key } = action; 152 | 153 | await loadLibrary("geocoding"); // Ensure the Geocoding library is loaded 154 | 155 | const geocoder = new google.maps.Geocoder(); 156 | 157 | // Fetch the data directly from the form or element 158 | const form = element.closest("form"); 159 | const data = await CoCreate.api.getData({ name, method, element, form }); 160 | 161 | // Directly pass the data to geocoder.geocode() 162 | geocoder.geocode(data, (response, status) => { 163 | if (status === "OK" && response[0]) { 164 | const data = { 165 | [name]: { response } 166 | }; 167 | CoCreate.api.setData({ 168 | name, 169 | method, 170 | form, 171 | data 172 | }); 173 | dispatchEvent(action); 174 | } else { 175 | console.error(`Geocoding failed with status: ${status}`); 176 | } 177 | }); 178 | }; 179 | 180 | function dispatchEvent(action) { 181 | action.element.dispatchEvent( 182 | new CustomEvent(action.endEvent, { 183 | detail: { 184 | data: action 185 | } 186 | }) 187 | ); 188 | } 189 | 190 | function getOrCreateMap(element, options = {}) { 191 | // Check if this element already has a map instance 192 | if (element.googleMapInstance) { 193 | return element.googleMapInstance; 194 | } 195 | 196 | // Fallback: Find an existing map in the same form or document 197 | const form = element.closest("form"); 198 | const mapElement = 199 | form?.querySelector('[google-maps="maps"][google-maps-key="map"]') || 200 | document.querySelector('[google-maps="maps"][google-maps-key="map"]'); 201 | 202 | if (mapElement?.googleMapInstance) { 203 | return mapElement.googleMapInstance; 204 | } 205 | 206 | // If no map exists, initialize a new one 207 | const map = new google.maps.Map(element, options); 208 | element.googleMapInstance = map; // Store the instance on the element 209 | console.log("New map instance created:", map); 210 | return map; 211 | } 212 | 213 | Observer.init({ 214 | name: "CoCreateElementsChildList", 215 | types: ["addedNodes"], 216 | selector: name, 217 | callback: function (mutation) { 218 | initElements([mutation.target]); 219 | } 220 | }); 221 | 222 | // Actions Integration 223 | Actions.init([ 224 | { 225 | name: "googlemaps", 226 | endEvent: "googlemaps", 227 | callback(action) { 228 | googleMapsHandlers[action.method](action); 229 | } 230 | } 231 | ]); 232 | 233 | init(); 234 | 235 | export default { init }; 236 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require("path"); 2 | const MiniCssExtractPlugin = require("mini-css-extract-plugin"); 3 | const { EsbuildPlugin } = require("esbuild-loader"); 4 | const { FileUploader } = require("@cocreate/webpack"); 5 | 6 | module.exports = async (env, argv) => { 7 | const isProduction = argv && argv.mode === "production"; 8 | const config = { 9 | entry: { 10 | "CoCreate-google-maps": "./src/index.js" 11 | }, 12 | output: { 13 | path: path.resolve(__dirname, "dist"), 14 | filename: isProduction ? "[name].min.js" : "[name].js", 15 | libraryExport: "default", 16 | library: ["CoCreate", "googleMaps"], 17 | clean: true 18 | }, 19 | plugins: [ 20 | new MiniCssExtractPlugin({ 21 | filename: isProduction ? "[name].min.css" : "[name].css" 22 | }), 23 | new FileUploader(env, argv) 24 | ], 25 | mode: isProduction ? "production" : "development", 26 | devtool: isProduction ? "source-map" : "eval-source-map", 27 | module: { 28 | rules: [ 29 | { 30 | test: /.js$/, 31 | exclude: /node_modules/, 32 | use: { 33 | loader: "esbuild-loader", 34 | options: { 35 | loader: "js", 36 | target: "es2017" 37 | } 38 | } 39 | }, 40 | { 41 | test: /.css$/i, 42 | use: [MiniCssExtractPlugin.loader, "css-loader"] 43 | } 44 | ] 45 | }, 46 | optimization: { 47 | minimize: isProduction, 48 | minimizer: [ 49 | new EsbuildPlugin({ 50 | target: "es2017", 51 | css: true 52 | }) 53 | ], 54 | splitChunks: { 55 | cacheGroups: { 56 | defaultVendors: false 57 | } 58 | } 59 | }, 60 | performance: { 61 | hints: isProduction ? "warning" : false 62 | } 63 | }; 64 | return config; 65 | }; 66 | --------------------------------------------------------------------------------