├── .github ├── CODEOWNERS └── workflows │ ├── build.yml │ └── deploy_cocoapods.yml ├── .gitignore ├── LICENSE.md ├── MapboxCoreMaps.podspec ├── Package.swift ├── README.md └── Sources └── MapboxCoreMapsWrapper └── Placeholder.swift /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @mapbox/maps-ios 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build 2 | 3 | on: push 4 | 5 | jobs: 6 | build: 7 | runs-on: macos-latest 8 | steps: 9 | - uses: actions/checkout@v4 10 | 11 | - name: Configure .netrc 12 | run: | 13 | echo "machine api.mapbox.com login mapbox password ${{ secrets.SDK_REGISTRY_TOKEN }}" >> ~/.netrc 14 | chmod 0600 ~/.netrc 15 | 16 | - name: Check SPM manifest 17 | run: swift package resolve 18 | 19 | - name: Check CocoaPods manifest 20 | run: pod spec lint 21 | -------------------------------------------------------------------------------- /.github/workflows/deploy_cocoapods.yml: -------------------------------------------------------------------------------- 1 | name: Deploy to CocoaPods 2 | 3 | on: 4 | push: 5 | tags: 6 | - "*" 7 | 8 | jobs: 9 | deploy-to-cocoapods: 10 | runs-on: macos-latest 11 | steps: 12 | - uses: actions/checkout@v4 13 | 14 | - name: Configure .netrc 15 | run: | 16 | echo "machine api.mapbox.com login mapbox password ${{ secrets.SDK_REGISTRY_TOKEN }}" >> ~/.netrc 17 | chmod 0600 ~/.netrc 18 | 19 | - name: Validate missing CocoaPods spec on trunk 20 | run: | 21 | PODSPEC_URL="https://cdn.jsdelivr.net/cocoa/Specs/0/6/6/MapboxCoreMaps/${GITHUB_REF_NAME#v}/MapboxCoreMaps.podspec.json" 22 | echo "Checking URL: $PODSPEC_URL" 23 | 24 | if curl --location --silent --fail --head --output /dev/null "$PODSPEC_URL"; 25 | then 26 | echo "Spec already exists on trunk" 27 | exit 1 28 | else 29 | echo "Spec does not exist on trunk" 30 | fi 31 | - name: Deploy to Cocoapods 32 | run: pod trunk push 33 | env: 34 | COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} 35 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## User settings 6 | xcuserdata/ 7 | 8 | ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 9 | *.xcscmblueprint 10 | *.xccheckout 11 | 12 | ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 13 | build/ 14 | DerivedData/ 15 | *.moved-aside 16 | *.pbxuser 17 | !default.pbxuser 18 | *.mode1v3 19 | !default.mode1v3 20 | *.mode2v3 21 | !default.mode2v3 22 | *.perspectivev3 23 | !default.perspectivev3 24 | 25 | ## Obj-C/Swift specific 26 | *.hmap 27 | 28 | ## App packaging 29 | *.ipa 30 | *.dSYM.zip 31 | *.dSYM 32 | 33 | ## Playgrounds 34 | timeline.xctimeline 35 | playground.xcworkspace 36 | 37 | # Swift Package Manager 38 | # 39 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 40 | # Packages/ 41 | # Package.pins 42 | Package.resolved 43 | # *.xcodeproj 44 | # 45 | # Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata 46 | # hence it is not needed unless you have added a package configuration file to your project 47 | .swiftpm 48 | 49 | .build/ 50 | 51 | # CocoaPods 52 | # 53 | # We recommend against adding the Pods directory to your .gitignore. However 54 | # you should judge for yourself, the pros and cons are mentioned at: 55 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 56 | # 57 | # Pods/ 58 | # 59 | # Add this line if you want to avoid checking in source code from the Xcode workspace 60 | # *.xcworkspace 61 | 62 | # Carthage 63 | # 64 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 65 | # Carthage/Checkouts 66 | 67 | Carthage/Build/ 68 | 69 | # Accio dependency management 70 | Dependencies/ 71 | .accio/ 72 | 73 | # fastlane 74 | # 75 | # It is recommended to not store the screenshots in the git repo. 76 | # Instead, use fastlane to re-generate the screenshots whenever they are needed. 77 | # For more information about the recommended setup visit: 78 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 79 | 80 | fastlane/report.xml 81 | fastlane/Preview.html 82 | fastlane/screenshots/**/*.png 83 | fastlane/test_output 84 | 85 | # Code Injection 86 | # 87 | # After new code Injection tools there's a generated folder /iOSInjectionProject 88 | # https://github.com/johnno1962/injectionforxcode 89 | 90 | iOSInjectionProject/ 91 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | ### [MapboxCoreMaps](https://www.mapbox.com/) by Mapbox 2 | 3 | ``` 4 | Copyright (c) 2021 - Mapbox, Inc. 5 | 6 | You may use this code with your Mapbox account and under the 7 | Mapbox Terms of Service (https://www.mapbox.com/tos/). 8 | 9 | All other rights reserved. 10 | ``` 11 | 12 | --- 13 | 14 | ### [icu](https://github.com/unicode-org/icu) by Unicode, Inc 15 | 16 | ``` 17 | COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) 18 | 19 | Copyright © 1991-2018 Unicode, Inc. All rights reserved. 20 | Distributed under the Terms of Use in http://www.unicode.org/copyright.html. 21 | 22 | Permission is hereby granted, free of charge, to any person obtaining 23 | a copy of the Unicode data files and any associated documentation 24 | (the "Data Files") or Unicode software and any associated documentation 25 | (the "Software") to deal in the Data Files or Software 26 | without restriction, including without limitation the rights to use, 27 | copy, modify, merge, publish, distribute, and/or sell copies of 28 | the Data Files or Software, and to permit persons to whom the Data Files 29 | or Software are furnished to do so, provided that either 30 | (a) this copyright and permission notice appear with all copies 31 | of the Data Files or Software, or 32 | (b) this copyright and permission notice appear in associated 33 | Documentation. 34 | 35 | THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF 36 | ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 37 | WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 38 | NONINFRINGEMENT OF THIRD PARTY RIGHTS. 39 | IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS 40 | NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL 41 | DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 42 | DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 43 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 44 | PERFORMANCE OF THE DATA FILES OR SOFTWARE. 45 | 46 | Except as contained in this notice, the name of a copyright holder 47 | shall not be used in advertising or otherwise to promote the sale, 48 | use or other dealings in these Data Files or Software without prior 49 | written authorization of the copyright holder. 50 | 51 | --------------------- 52 | 53 | Third-Party Software Licenses 54 | 55 | This section contains third-party software notices and/or additional 56 | terms for licensed third-party software components included within ICU 57 | libraries. 58 | 59 | 1. ICU License - ICU 1.8.1 to ICU 57.1 60 | 61 | COPYRIGHT AND PERMISSION NOTICE 62 | 63 | Copyright (c) 1995-2016 International Business Machines Corporation and others 64 | All rights reserved. 65 | 66 | Permission is hereby granted, free of charge, to any person obtaining 67 | a copy of this software and associated documentation files (the 68 | "Software"), to deal in the Software without restriction, including 69 | without limitation the rights to use, copy, modify, merge, publish, 70 | distribute, and/or sell copies of the Software, and to permit persons 71 | to whom the Software is furnished to do so, provided that the above 72 | copyright notice(s) and this permission notice appear in all copies of 73 | the Software and that both the above copyright notice(s) and this 74 | permission notice appear in supporting documentation. 75 | 76 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 77 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 78 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 79 | OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 80 | HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY 81 | SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER 82 | RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF 83 | CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 84 | CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 85 | 86 | Except as contained in this notice, the name of a copyright holder 87 | shall not be used in advertising or otherwise to promote the sale, use 88 | or other dealings in this Software without prior written authorization 89 | of the copyright holder. 90 | 91 | All trademarks and registered trademarks mentioned herein are the 92 | property of their respective owners. 93 | 94 | 2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt) 95 | 96 | # The Google Chrome software developed by Google is licensed under 97 | # the BSD license. Other software included in this distribution is 98 | # provided under other licenses, as set forth below. 99 | # 100 | # The BSD License 101 | # http://opensource.org/licenses/bsd-license.php 102 | # Copyright (C) 2006-2008, Google Inc. 103 | # 104 | # All rights reserved. 105 | # 106 | # Redistribution and use in source and binary forms, with or without 107 | # modification, are permitted provided that the following conditions are met: 108 | # 109 | # Redistributions of source code must retain the above copyright notice, 110 | # this list of conditions and the following disclaimer. 111 | # Redistributions in binary form must reproduce the above 112 | # copyright notice, this list of conditions and the following 113 | # disclaimer in the documentation and/or other materials provided with 114 | # the distribution. 115 | # Neither the name of Google Inc. nor the names of its 116 | # contributors may be used to endorse or promote products derived from 117 | # this software without specific prior written permission. 118 | # 119 | # 120 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 121 | # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 122 | # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 123 | # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 124 | # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 125 | # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 126 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 127 | # SUBSTITUTE GOODS OR SERVICES LOSS OF USE, DATA, OR PROFITS OR 128 | # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 129 | # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 130 | # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 131 | # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 132 | # 133 | # 134 | # The word list in cjdict.txt are generated by combining three word lists 135 | # listed below with further processing for compound word breaking. The 136 | # frequency is generated with an iterative training against Google web 137 | # corpora. 138 | # 139 | # * Libtabe (Chinese) 140 | # - https://sourceforge.net/project/?group_id=1519 141 | # - Its license terms and conditions are shown below. 142 | # 143 | # * IPADIC (Japanese) 144 | # - http://chasen.aist-nara.ac.jp/chasen/distribution.html 145 | # - Its license terms and conditions are shown below. 146 | # 147 | # ---------COPYING.libtabe ---- BEGIN-------------------- 148 | # 149 | # /* 150 | # * Copyright (c) 1999 TaBE Project. 151 | # * Copyright (c) 1999 Pai-Hsiang Hsiao. 152 | # * All rights reserved. 153 | # * 154 | # * Redistribution and use in source and binary forms, with or without 155 | # * modification, are permitted provided that the following conditions 156 | # * are met: 157 | # * 158 | # * . Redistributions of source code must retain the above copyright 159 | # * notice, this list of conditions and the following disclaimer. 160 | # * . Redistributions in binary form must reproduce the above copyright 161 | # * notice, this list of conditions and the following disclaimer in 162 | # * the documentation and/or other materials provided with the 163 | # * distribution. 164 | # * . Neither the name of the TaBE Project nor the names of its 165 | # * contributors may be used to endorse or promote products derived 166 | # * from this software without specific prior written permission. 167 | # * 168 | # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 169 | # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 170 | # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 171 | # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 172 | # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 173 | # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 174 | # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 175 | # * SERVICES LOSS OF USE, DATA, OR PROFITS OR BUSINESS INTERRUPTION) 176 | # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 177 | # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 178 | # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 179 | # * OF THE POSSIBILITY OF SUCH DAMAGE. 180 | # */ 181 | # 182 | # /* 183 | # * Copyright (c) 1999 Computer Systems and Communication Lab, 184 | # * Institute of Information Science, Academia 185 | # * Sinica. All rights reserved. 186 | # * 187 | # * Redistribution and use in source and binary forms, with or without 188 | # * modification, are permitted provided that the following conditions 189 | # * are met: 190 | # * 191 | # * . Redistributions of source code must retain the above copyright 192 | # * notice, this list of conditions and the following disclaimer. 193 | # * . Redistributions in binary form must reproduce the above copyright 194 | # * notice, this list of conditions and the following disclaimer in 195 | # * the documentation and/or other materials provided with the 196 | # * distribution. 197 | # * . Neither the name of the Computer Systems and Communication Lab 198 | # * nor the names of its contributors may be used to endorse or 199 | # * promote products derived from this software without specific 200 | # * prior written permission. 201 | # * 202 | # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 203 | # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 204 | # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 205 | # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 206 | # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 207 | # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 208 | # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 209 | # * SERVICES LOSS OF USE, DATA, OR PROFITS OR BUSINESS INTERRUPTION) 210 | # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 211 | # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 212 | # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 213 | # * OF THE POSSIBILITY OF SUCH DAMAGE. 214 | # */ 215 | # 216 | # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, 217 | # University of Illinois 218 | # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 219 | # 220 | # ---------------COPYING.libtabe-----END-------------------------------- 221 | # 222 | # 223 | # ---------------COPYING.ipadic-----BEGIN------------------------------- 224 | # 225 | # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science 226 | # and Technology. All Rights Reserved. 227 | # 228 | # Use, reproduction, and distribution of this software is permitted. 229 | # Any copy of this software, whether in its original form or modified, 230 | # must include both the above copyright notice and the following 231 | # paragraphs. 232 | # 233 | # Nara Institute of Science and Technology (NAIST), 234 | # the copyright holders, disclaims all warranties with regard to this 235 | # software, including all implied warranties of merchantability and 236 | # fitness, in no event shall NAIST be liable for 237 | # any special, indirect or consequential damages or any damages 238 | # whatsoever resulting from loss of use, data or profits, whether in an 239 | # action of contract, negligence or other tortuous action, arising out 240 | # of or in connection with the use or performance of this software. 241 | # 242 | # A large portion of the dictionary entries 243 | # originate from ICOT Free Software. The following conditions for ICOT 244 | # Free Software applies to the current dictionary as well. 245 | # 246 | # Each User may also freely distribute the Program, whether in its 247 | # original form or modified, to any third party or parties, PROVIDED 248 | # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear 249 | # on, or be attached to, the Program, which is distributed substantially 250 | # in the same form as set out herein and that such intended 251 | # distribution, if actually made, will neither violate or otherwise 252 | # contravene any of the laws and regulations of the countries having 253 | # jurisdiction over the User or the intended distribution itself. 254 | # 255 | # NO WARRANTY 256 | # 257 | # The program was produced on an experimental basis in the course of the 258 | # research and development conducted during the project and is provided 259 | # to users as so produced on an experimental basis. Accordingly, the 260 | # program is provided without any warranty whatsoever, whether express, 261 | # implied, statutory or otherwise. The term "warranty" used herein 262 | # includes, but is not limited to, any warranty of the quality, 263 | # performance, merchantability and fitness for a particular purpose of 264 | # the program and the nonexistence of any infringement or violation of 265 | # any right of any third party. 266 | # 267 | # Each user of the program will agree and understand, and be deemed to 268 | # have agreed and understood, that there is no warranty whatsoever for 269 | # the program and, accordingly, the entire risk arising from or 270 | # otherwise connected with the program is assumed by the user. 271 | # 272 | # Therefore, neither ICOT, the copyright holder, or any other 273 | # organization that participated in or was otherwise related to the 274 | # development of the program and their respective officials, directors, 275 | # officers and other employees shall be held liable for any and all 276 | # damages, including, without limitation, general, special, incidental 277 | # and consequential damages, arising out of or otherwise in connection 278 | # with the use or inability to use the program or any product, material 279 | # or result produced or otherwise obtained by using the program, 280 | # regardless of whether they have been advised of, or otherwise had 281 | # knowledge of, the possibility of such damages at any time during the 282 | # project or thereafter. Each user will be deemed to have agreed to the 283 | # foregoing by his or her commencement of use of the program. The term 284 | # "use" as used herein includes, but is not limited to, the use, 285 | # modification, copying and distribution of the program and the 286 | # production of secondary products from the program. 287 | # 288 | # In the case where the program, whether in its original form or 289 | # modified, was distributed or delivered to or received by a user from 290 | # any person, organization or entity other than ICOT, unless it makes or 291 | # grants independently of ICOT any specific warranty to the user in 292 | # writing, such person, organization or entity, will also be exempted 293 | # from and not be held liable to the user for any such damages as noted 294 | # above as far as the program is concerned. 295 | # 296 | # ---------------COPYING.ipadic-----END---------------------------------- 297 | 298 | 3. Lao Word Break Dictionary Data (laodict.txt) 299 | 300 | # Copyright (c) 2013 International Business Machines Corporation 301 | # and others. All Rights Reserved. 302 | # 303 | # Project: http://code.google.com/p/lao-dictionary/ 304 | # Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt 305 | # License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt 306 | # (copied below) 307 | # 308 | # This file is derived from the above dictionary, with slight 309 | # modifications. 310 | # ---------------------------------------------------------------------- 311 | # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. 312 | # All rights reserved. 313 | # 314 | # Redistribution and use in source and binary forms, with or without 315 | # modification, 316 | # are permitted provided that the following conditions are met: 317 | # 318 | # 319 | # Redistributions of source code must retain the above copyright notice, this 320 | # list of conditions and the following disclaimer. Redistributions in 321 | # binary form must reproduce the above copyright notice, this list of 322 | # conditions and the following disclaimer in the documentation and/or 323 | # other materials provided with the distribution. 324 | # 325 | # 326 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 327 | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 328 | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 329 | # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 330 | # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 331 | # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 332 | # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 333 | # SERVICES LOSS OF USE, DATA, OR PROFITS OR BUSINESS INTERRUPTION) 334 | # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 335 | # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 336 | # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 337 | # OF THE POSSIBILITY OF SUCH DAMAGE. 338 | # -------------------------------------------------------------------------- 339 | 340 | 4. Burmese Word Break Dictionary Data (burmesedict.txt) 341 | 342 | # Copyright (c) 2014 International Business Machines Corporation 343 | # and others. All Rights Reserved. 344 | # 345 | # This list is part of a project hosted at: 346 | # github.com/kanyawtech/myanmar-karen-word-lists 347 | # 348 | # -------------------------------------------------------------------------- 349 | # Copyright (c) 2013, LeRoy Benjamin Sharon 350 | # All rights reserved. 351 | # 352 | # Redistribution and use in source and binary forms, with or without 353 | # modification, are permitted provided that the following conditions 354 | # are met: Redistributions of source code must retain the above 355 | # copyright notice, this list of conditions and the following 356 | # disclaimer. Redistributions in binary form must reproduce the 357 | # above copyright notice, this list of conditions and the following 358 | # disclaimer in the documentation and/or other materials provided 359 | # with the distribution. 360 | # 361 | # Neither the name Myanmar Karen Word Lists, nor the names of its 362 | # contributors may be used to endorse or promote products derived 363 | # from this software without specific prior written permission. 364 | # 365 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 366 | # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 367 | # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 368 | # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 369 | # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS 370 | # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 371 | # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 372 | # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES LOSS OF USE, 373 | # DATA, OR PROFITS OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 374 | # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 375 | # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 376 | # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 377 | # SUCH DAMAGE. 378 | # -------------------------------------------------------------------------- 379 | 380 | 5. Time Zone Database 381 | 382 | ICU uses the public domain data and code derived from Time Zone 383 | Database for its time zone support. The ownership of the TZ database 384 | is explained in BCP 175: Procedure for Maintaining the Time Zone 385 | Database section 7. 386 | 387 | # 7. Database Ownership 388 | # 389 | # The TZ database itself is not an IETF Contribution or an IETF 390 | # document. Rather it is a pre-existing and regularly updated work 391 | # that is in the public domain, and is intended to remain in the 392 | # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do 393 | # not apply to the TZ Database or contributions that individuals make 394 | # to it. Should any claims be made and substantiated against the TZ 395 | # Database, the organization that is providing the IANA 396 | # Considerations defined in this RFC, under the memorandum of 397 | # understanding with the IETF, currently ICANN, may act in accordance 398 | # with all competent court orders. No ownership claims will be made 399 | # by ICANN or the IETF Trust on the database or the code. Any person 400 | # making a contribution to the database or code waives all rights to 401 | # future claims in that contribution or in the TZ Database. 402 | 403 | 6. Google double-conversion 404 | 405 | Copyright 2006-2011, the V8 project authors. All rights reserved. 406 | Redistribution and use in source and binary forms, with or without 407 | modification, are permitted provided that the following conditions are 408 | met: 409 | 410 | * Redistributions of source code must retain the above copyright 411 | notice, this list of conditions and the following disclaimer. 412 | * Redistributions in binary form must reproduce the above 413 | copyright notice, this list of conditions and the following 414 | disclaimer in the documentation and/or other materials provided 415 | with the distribution. 416 | * Neither the name of Google Inc. nor the names of its 417 | contributors may be used to endorse or promote products derived 418 | from this software without specific prior written permission. 419 | 420 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 421 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 422 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 423 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 424 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 425 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 426 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES LOSS OF USE, 427 | DATA, OR PROFITS OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 428 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 429 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 430 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 431 | 432 | ``` 433 | 434 | --- 435 | 436 | ### [kdbush.hpp](https://github.com/mourner/kdbush.hpp) by Vladimir Agafonkin 437 | 438 | ``` 439 | Copyright (c) 2016, Vladimir Agafonkin 440 | 441 | Permission to use, copy, modify, and/or distribute this software for any 442 | purpose with or without fee is hereby granted, provided that the above 443 | copyright notice and this permission notice appear in all copies. 444 | 445 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 446 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 447 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 448 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 449 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 450 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 451 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 452 | 453 | ``` 454 | 455 | --- 456 | 457 | ### [cheap-ruler-cpp](https://github.com/mapbox/cheap-ruler-cpp) by Mapbox 458 | 459 | ``` 460 | ISC License 461 | 462 | Copyright (c) 2017, Mapbox 463 | 464 | Permission to use, copy, modify, and/or distribute this software for any purpose 465 | with or without fee is hereby granted, provided that the above copyright notice 466 | and this permission notice appear in all copies. 467 | 468 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 469 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 470 | FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 471 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 472 | OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 473 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 474 | THIS SOFTWARE. 475 | 476 | ``` 477 | 478 | --- 479 | 480 | ### [geojson-vt-cpp](https://github.com/mapbox/geojson-vt-cpp) by Mapbox 481 | 482 | ``` 483 | ISC License 484 | 485 | Copyright (c) 2015, Mapbox 486 | 487 | Permission to use, copy, modify, and/or distribute this software for any purpose 488 | with or without fee is hereby granted, provided that the above copyright notice 489 | and this permission notice appear in all copies. 490 | 491 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 492 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 493 | FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 494 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 495 | OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 496 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 497 | THIS SOFTWARE. 498 | 499 | ``` 500 | 501 | --- 502 | 503 | ### [shelf-pack-cpp](https://github.com/mapbox/shelf-pack-cpp) by Mapbox 504 | 505 | ``` 506 | ISC License 507 | 508 | Copyright (c) 2017, Mapbox 509 | 510 | Permission to use, copy, modify, and/or distribute this software for any purpose 511 | with or without fee is hereby granted, provided that the above copyright notice 512 | and this permission notice appear in all copies. 513 | 514 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 515 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 516 | FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 517 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 518 | OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 519 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 520 | THIS SOFTWARE. 521 | 522 | ``` 523 | 524 | --- 525 | 526 | ### [supercluster.hpp](https://github.com/mapbox/supercluster.hpp) by Mapbox 527 | 528 | ``` 529 | Copyright (c) 2016, Mapbox 530 | 531 | Permission to use, copy, modify, and/or distribute this software for any 532 | purpose with or without fee is hereby granted, provided that the above 533 | copyright notice and this permission notice appear in all copies. 534 | 535 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 536 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 537 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 538 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 539 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 540 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 541 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 542 | 543 | ``` 544 | 545 | --- 546 | 547 | ### [Boost C++ Libraries](https://www.boost.org) by Boost authors 548 | 549 | ``` 550 | Boost Software License - Version 1.0 - August 17th, 2003 551 | 552 | Permission is hereby granted, free of charge, to any person or organization 553 | obtaining a copy of the software and accompanying documentation covered by 554 | this license (the "Software") to use, reproduce, display, distribute, 555 | execute, and transmit the Software, and to prepare derivative works of the 556 | Software, and to permit third-parties to whom the Software is furnished to 557 | do so, all subject to the following: 558 | 559 | The copyright notices in the Software and this entire statement, including 560 | the above license grant, this restriction and the following disclaimer, 561 | must be included in all copies of the Software, in whole or in part, and 562 | all derivative works of the Software, unless such copies or derivative 563 | works are solely in the form of machine-executable object code generated by 564 | a source language processor. 565 | 566 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 567 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 568 | FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 569 | SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 570 | FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 571 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 572 | DEALINGS IN THE SOFTWARE. 573 | 574 | ``` 575 | 576 | --- 577 | 578 | ### [csscolorparser](https://github.com/mapbox/css-color-parser-cpp) by Dean McNamee and Konstantin Käfer 579 | 580 | ``` 581 | (c) Dean McNamee , 2012. 582 | (c) Konstantin Käfer , 2014. 583 | 584 | Permission is hereby granted, free of charge, to any person obtaining a copy 585 | of this software and associated documentation files (the "Software"), to 586 | deal in the Software without restriction, including without limitation the 587 | rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 588 | sell copies of the Software, and to permit persons to whom the Software is 589 | furnished to do so, subject to the following conditions: 590 | 591 | The above copyright notice and this permission notice shall be included in 592 | all copies or substantial portions of the Software. 593 | 594 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 595 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 596 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 597 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 598 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 599 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 600 | IN THE SOFTWARE. 601 | 602 | ``` 603 | 604 | --- 605 | 606 | ### [earcut.hpp](https://github.com/mapbox/earcut.hpp) by Mapbox 607 | 608 | ``` 609 | ISC License 610 | 611 | Copyright (c) 2015, Mapbox 612 | 613 | Permission to use, copy, modify, and/or distribute this software for any purpose 614 | with or without fee is hereby granted, provided that the above copyright notice 615 | and this permission notice appear in all copies. 616 | 617 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 618 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 619 | FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 620 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 621 | OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 622 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 623 | THIS SOFTWARE. 624 | 625 | ``` 626 | 627 | --- 628 | 629 | ### [eternal](https://github.com/mapbox/eternal) by Mapbox 630 | 631 | ``` 632 | ISC License 633 | 634 | Copyright (c) 2018, Mapbox 635 | 636 | Permission to use, copy, modify, and/or distribute this software for any purpose 637 | with or without fee is hereby granted, provided that the above copyright notice 638 | and this permission notice appear in all copies. 639 | 640 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 641 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 642 | FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 643 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 644 | OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 645 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 646 | THIS SOFTWARE. 647 | 648 | ``` 649 | 650 | --- 651 | 652 | ### [parsedate](https://curl.haxx.se) by Daniel Stenberg and others 653 | 654 | ``` 655 | COPYRIGHT AND PERMISSION NOTICE 656 | 657 | Copyright (c) 1996 - 2020, Daniel Stenberg, , and many 658 | contributors, see the THANKS file. 659 | 660 | All rights reserved. 661 | 662 | Permission to use, copy, modify, and distribute this software for any purpose 663 | with or without fee is hereby granted, provided that the above copyright 664 | notice and this permission notice appear in all copies. 665 | 666 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 667 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 668 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN 669 | NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 670 | DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 671 | OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE 672 | OR OTHER DEALINGS IN THE SOFTWARE. 673 | 674 | Except as contained in this notice, the name of a copyright holder shall not 675 | be used in advertising or otherwise to promote the sale, use or other dealings 676 | in this Software without prior written authorization of the copyright holder. 677 | 678 | ``` 679 | 680 | --- 681 | 682 | ### [polylabel](https://github.com/mapbox/polylabel) by Mapbox 683 | 684 | ``` 685 | ISC License 686 | Copyright (c) 2016 Mapbox 687 | 688 | Permission to use, copy, modify, and/or distribute this software for any purpose 689 | with or without fee is hereby granted, provided that the above copyright notice 690 | and this permission notice appear in all copies. 691 | 692 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO 693 | THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. 694 | IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR 695 | CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA 696 | OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS 697 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS 698 | SOFTWARE. 699 | 700 | ``` 701 | 702 | --- 703 | 704 | ### [protozero](https://github.com/mapbox/protozero) by Mapbox 705 | 706 | ``` 707 | protozero copyright (c) Mapbox. 708 | 709 | Redistribution and use in source and binary forms, with or without 710 | modification, are permitted provided that the following conditions are 711 | met: 712 | 713 | * Redistributions of source code must retain the above copyright 714 | notice, this list of conditions and the following disclaimer. 715 | * Redistributions in binary form must reproduce the above copyright 716 | notice, this list of conditions and the following disclaimer in 717 | the documentation and/or other materials provided with the 718 | distribution. 719 | 720 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS 721 | IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 722 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 723 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 724 | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 725 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 726 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES LOSS OF USE, DATA, OR 727 | PROFITS OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 728 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 729 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 730 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 731 | 732 | ``` 733 | 734 | --- 735 | 736 | ### [unique_resource](https://github.com/okdshin/unique_resource) by Shintarou Okada 737 | 738 | ``` 739 | Boost Software License - Version 1.0 - August 17th, 2003 740 | 741 | Permission is hereby granted, free of charge, to any person or organization 742 | obtaining a copy of the software and accompanying documentation covered by 743 | this license (the "Software") to use, reproduce, display, distribute, 744 | execute, and transmit the Software, and to prepare derivative works of the 745 | Software, and to permit third-parties to whom the Software is furnished to 746 | do so, all subject to the following: 747 | 748 | The copyright notices in the Software and this entire statement, including 749 | the above license grant, this restriction and the following disclaimer, 750 | must be included in all copies of the Software, in whole or in part, and 751 | all derivative works of the Software, unless such copies or derivative 752 | works are solely in the form of machine-executable object code generated by 753 | a source language processor. 754 | 755 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 756 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 757 | FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 758 | SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 759 | FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 760 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 761 | DEALINGS IN THE SOFTWARE. 762 | 763 | ``` 764 | 765 | --- 766 | 767 | ### [vector-tile](https://github.com/mapbox/vector-tile) by Mapbox 768 | 769 | ``` 770 | Copyright (c) 2016, Mapbox 771 | 772 | Permission to use, copy, modify, and/or distribute this software for any 773 | purpose with or without fee is hereby granted, provided that the above 774 | copyright notice and this permission notice appear in all copies. 775 | 776 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 777 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 778 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 779 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 780 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 781 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 782 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 783 | 784 | ``` 785 | 786 | --- 787 | 788 | ### [wagyu](https://github.com/mapbox/wagyu.git) by Angus Johnson and Mapbox 789 | 790 | ``` 791 | Parts of the code in the Wagyu Library are derived from the version of the 792 | Clipper Library by Angus Johnson listed below. 793 | 794 | Author : Angus Johnson 795 | Version : 6.4.0 796 | Date : 2 July 2015 797 | Website : http://www.angusj.com 798 | 799 | Copyright for portions of the derived code in the Wagyu library are held 800 | by Angus Johnson, 2010-2015. All other copyright for the Wagyu Library are held by 801 | Mapbox, 2016. This code is published in accordance with, and retains the same license 802 | as the Clipper Library by Angus Johnson. 803 | 804 | Copyright (c) 2010-2015, Angus Johnson 805 | Copyright (c) 2016, Mapbox 806 | 807 | Permission is hereby granted, free of charge, to any person or organization 808 | obtaining a copy of the software and accompanying documentation covered by 809 | this license (the "Software") to use, reproduce, display, distribute, 810 | execute, and transmit the Software, and to prepare derivative works of the 811 | Software, and to permit third-parties to whom the Software is furnished to 812 | do so, all subject to the following: 813 | 814 | The copyright notices in the Software and this entire statement, including 815 | the above license grant, this restriction and the following disclaimer, 816 | must be included in all copies of the Software, in whole or in part, and 817 | all derivative works of the Software, unless such copies or derivative 818 | works are solely in the form of machine-executable object code generated by 819 | a source language processor. 820 | 821 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 822 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 823 | FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 824 | SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 825 | FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 826 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 827 | DEALINGS IN THE SOFTWARE. 828 | 829 | ``` 830 | 831 | --- 832 | 833 | ### [draco](https://github.com/google/draco) by Google 834 | 835 | ``` 836 | 837 | Apache License 838 | Version 2.0, January 2004 839 | http://www.apache.org/licenses/ 840 | 841 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 842 | 843 | 1. Definitions. 844 | 845 | "License" shall mean the terms and conditions for use, reproduction, 846 | and distribution as defined by Sections 1 through 9 of this document. 847 | 848 | "Licensor" shall mean the copyright owner or entity authorized by 849 | the copyright owner that is granting the License. 850 | 851 | "Legal Entity" shall mean the union of the acting entity and all 852 | other entities that control, are controlled by, or are under common 853 | control with that entity. For the purposes of this definition, 854 | "control" means (i) the power, direct or indirect, to cause the 855 | direction or management of such entity, whether by contract or 856 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 857 | outstanding shares, or (iii) beneficial ownership of such entity. 858 | 859 | "You" (or "Your") shall mean an individual or Legal Entity 860 | exercising permissions granted by this License. 861 | 862 | "Source" form shall mean the preferred form for making modifications, 863 | including but not limited to software source code, documentation 864 | source, and configuration files. 865 | 866 | "Object" form shall mean any form resulting from mechanical 867 | transformation or translation of a Source form, including but 868 | not limited to compiled object code, generated documentation, 869 | and conversions to other media types. 870 | 871 | "Work" shall mean the work of authorship, whether in Source or 872 | Object form, made available under the License, as indicated by a 873 | copyright notice that is included in or attached to the work 874 | (an example is provided in the Appendix below). 875 | 876 | "Derivative Works" shall mean any work, whether in Source or Object 877 | form, that is based on (or derived from) the Work and for which the 878 | editorial revisions, annotations, elaborations, or other modifications 879 | represent, as a whole, an original work of authorship. For the purposes 880 | of this License, Derivative Works shall not include works that remain 881 | separable from, or merely link (or bind by name) to the interfaces of, 882 | the Work and Derivative Works thereof. 883 | 884 | "Contribution" shall mean any work of authorship, including 885 | the original version of the Work and any modifications or additions 886 | to that Work or Derivative Works thereof, that is intentionally 887 | submitted to Licensor for inclusion in the Work by the copyright owner 888 | or by an individual or Legal Entity authorized to submit on behalf of 889 | the copyright owner. For the purposes of this definition, "submitted" 890 | means any form of electronic, verbal, or written communication sent 891 | to the Licensor or its representatives, including but not limited to 892 | communication on electronic mailing lists, source code control systems, 893 | and issue tracking systems that are managed by, or on behalf of, the 894 | Licensor for the purpose of discussing and improving the Work, but 895 | excluding communication that is conspicuously marked or otherwise 896 | designated in writing by the copyright owner as "Not a Contribution." 897 | 898 | "Contributor" shall mean Licensor and any individual or Legal Entity 899 | on behalf of whom a Contribution has been received by Licensor and 900 | subsequently incorporated within the Work. 901 | 902 | 2. Grant of Copyright License. Subject to the terms and conditions of 903 | this License, each Contributor hereby grants to You a perpetual, 904 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 905 | copyright license to reproduce, prepare Derivative Works of, 906 | publicly display, publicly perform, sublicense, and distribute the 907 | Work and such Derivative Works in Source or Object form. 908 | 909 | 3. Grant of Patent License. Subject to the terms and conditions of 910 | this License, each Contributor hereby grants to You a perpetual, 911 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 912 | (except as stated in this section) patent license to make, have made, 913 | use, offer to sell, sell, import, and otherwise transfer the Work, 914 | where such license applies only to those patent claims licensable 915 | by such Contributor that are necessarily infringed by their 916 | Contribution(s) alone or by combination of their Contribution(s) 917 | with the Work to which such Contribution(s) was submitted. If You 918 | institute patent litigation against any entity (including a 919 | cross-claim or counterclaim in a lawsuit) alleging that the Work 920 | or a Contribution incorporated within the Work constitutes direct 921 | or contributory patent infringement, then any patent licenses 922 | granted to You under this License for that Work shall terminate 923 | as of the date such litigation is filed. 924 | 925 | 4. Redistribution. You may reproduce and distribute copies of the 926 | Work or Derivative Works thereof in any medium, with or without 927 | modifications, and in Source or Object form, provided that You 928 | meet the following conditions: 929 | 930 | (a) You must give any other recipients of the Work or 931 | Derivative Works a copy of this License and 932 | 933 | (b) You must cause any modified files to carry prominent notices 934 | stating that You changed the files and 935 | 936 | (c) You must retain, in the Source form of any Derivative Works 937 | that You distribute, all copyright, patent, trademark, and 938 | attribution notices from the Source form of the Work, 939 | excluding those notices that do not pertain to any part of 940 | the Derivative Works and 941 | 942 | (d) If the Work includes a "NOTICE" text file as part of its 943 | distribution, then any Derivative Works that You distribute must 944 | include a readable copy of the attribution notices contained 945 | within such NOTICE file, excluding those notices that do not 946 | pertain to any part of the Derivative Works, in at least one 947 | of the following places: within a NOTICE text file distributed 948 | as part of the Derivative Works within the Source form or 949 | documentation, if provided along with the Derivative Works or, 950 | within a display generated by the Derivative Works, if and 951 | wherever such third-party notices normally appear. The contents 952 | of the NOTICE file are for informational purposes only and 953 | do not modify the License. You may add Your own attribution 954 | notices within Derivative Works that You distribute, alongside 955 | or as an addendum to the NOTICE text from the Work, provided 956 | that such additional attribution notices cannot be construed 957 | as modifying the License. 958 | 959 | You may add Your own copyright statement to Your modifications and 960 | may provide additional or different license terms and conditions 961 | for use, reproduction, or distribution of Your modifications, or 962 | for any such Derivative Works as a whole, provided Your use, 963 | reproduction, and distribution of the Work otherwise complies with 964 | the conditions stated in this License. 965 | 966 | 5. Submission of Contributions. Unless You explicitly state otherwise, 967 | any Contribution intentionally submitted for inclusion in the Work 968 | by You to the Licensor shall be under the terms and conditions of 969 | this License, without any additional terms or conditions. 970 | Notwithstanding the above, nothing herein shall supersede or modify 971 | the terms of any separate license agreement you may have executed 972 | with Licensor regarding such Contributions. 973 | 974 | 6. Trademarks. This License does not grant permission to use the trade 975 | names, trademarks, service marks, or product names of the Licensor, 976 | except as required for reasonable and customary use in describing the 977 | origin of the Work and reproducing the content of the NOTICE file. 978 | 979 | 7. Disclaimer of Warranty. Unless required by applicable law or 980 | agreed to in writing, Licensor provides the Work (and each 981 | Contributor provides its Contributions) on an "AS IS" BASIS, 982 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 983 | implied, including, without limitation, any warranties or conditions 984 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 985 | PARTICULAR PURPOSE. You are solely responsible for determining the 986 | appropriateness of using or redistributing the Work and assume any 987 | risks associated with Your exercise of permissions under this License. 988 | 989 | 8. Limitation of Liability. In no event and under no legal theory, 990 | whether in tort (including negligence), contract, or otherwise, 991 | unless required by applicable law (such as deliberate and grossly 992 | negligent acts) or agreed to in writing, shall any Contributor be 993 | liable to You for damages, including any direct, indirect, special, 994 | incidental, or consequential damages of any character arising as a 995 | result of this License or out of the use or inability to use the 996 | Work (including but not limited to damages for loss of goodwill, 997 | work stoppage, computer failure or malfunction, or any and all 998 | other commercial damages or losses), even if such Contributor 999 | has been advised of the possibility of such damages. 1000 | 1001 | 9. Accepting Warranty or Additional Liability. While redistributing 1002 | the Work or Derivative Works thereof, You may choose to offer, 1003 | and charge a fee for, acceptance of support, warranty, indemnity, 1004 | or other liability obligations and/or rights consistent with this 1005 | License. However, in accepting such obligations, You may act only 1006 | on Your own behalf and on Your sole responsibility, not on behalf 1007 | of any other Contributor, and only if You agree to indemnify, 1008 | defend, and hold each Contributor harmless for any liability 1009 | incurred by, or claims asserted against, such Contributor by reason 1010 | of your accepting any such warranty or additional liability. 1011 | 1012 | END OF TERMS AND CONDITIONS 1013 | 1014 | APPENDIX: How to apply the Apache License to your work. 1015 | 1016 | To apply the Apache License to your work, attach the following 1017 | boilerplate notice, with the fields enclosed by brackets "[]" 1018 | replaced with your own identifying information. (Don't include 1019 | the brackets!) The text should be enclosed in the appropriate 1020 | comment syntax for the file format. We also recommend that a 1021 | file or class name and description of purpose be included on the 1022 | same "printed page" as the copyright notice for easier 1023 | identification within third-party archives. 1024 | 1025 | Copyright [yyyy] [name of copyright owner] 1026 | 1027 | Licensed under the Apache License, Version 2.0 (the "License") 1028 | you may not use this file except in compliance with the License. 1029 | You may obtain a copy of the License at 1030 | 1031 | http://www.apache.org/licenses/LICENSE-2.0 1032 | 1033 | Unless required by applicable law or agreed to in writing, software 1034 | distributed under the License is distributed on an "AS IS" BASIS, 1035 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 1036 | See the License for the specific language governing permissions and 1037 | limitations under the License. 1038 | ``` 1039 | 1040 | --- 1041 | 1042 | ### [tinygltf](https://github.com/syoyo/tinygltf) by Syoyo Fujita 1043 | 1044 | ``` 1045 | MIT License 1046 | 1047 | Copyright (c) 2017 Syoyo Fujita, Aurélien Chatelain and many contributors 1048 | 1049 | Permission is hereby granted, free of charge, to any person obtaining a copy 1050 | of this software and associated documentation files (the "Software"), to deal 1051 | in the Software without restriction, including without limitation the rights 1052 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 1053 | copies of the Software, and to permit persons to whom the Software is 1054 | furnished to do so, subject to the following conditions: 1055 | 1056 | The above copyright notice and this permission notice shall be included in all 1057 | copies or substantial portions of the Software. 1058 | 1059 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 1060 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 1061 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 1062 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 1063 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 1064 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 1065 | SOFTWARE. 1066 | 1067 | ``` 1068 | 1069 | --- 1070 | 1071 | ### [mapbox-base](https://github.com/mapbox/mapbox-base) by Mapbox 1072 | 1073 | ``` 1074 | Copyright (c) MapBox 1075 | All rights reserved. 1076 | 1077 | Redistribution and use in source and binary forms, with or without modification, 1078 | are permitted provided that the following conditions are met: 1079 | 1080 | - Redistributions of source code must retain the above copyright notice, this 1081 | list of conditions and the following disclaimer. 1082 | - Redistributions in binary form must reproduce the above copyright notice, this 1083 | list of conditions and the following disclaimer in the documentation and/or 1084 | other materials provided with the distribution. 1085 | - Neither the name "MapBox" nor the names of its contributors may be 1086 | used to endorse or promote products derived from this software without 1087 | specific prior written permission. 1088 | 1089 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 1090 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 1091 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 1092 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR 1093 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 1094 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES 1095 | LOSS OF USE, DATA, OR PROFITS OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 1096 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 1097 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 1098 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 1099 | ``` 1100 | 1101 | --- 1102 | 1103 | ### [expected-lite](https://github.com/martinmoene/expected-lite) by Martin Moene 1104 | 1105 | ``` 1106 | Boost Software License - Version 1.0 - August 17th, 2003 1107 | 1108 | Permission is hereby granted, free of charge, to any person or organization 1109 | obtaining a copy of the software and accompanying documentation covered by 1110 | this license (the "Software") to use, reproduce, display, distribute, 1111 | execute, and transmit the Software, and to prepare derivative works of the 1112 | Software, and to permit third-parties to whom the Software is furnished to 1113 | do so, all subject to the following: 1114 | 1115 | The copyright notices in the Software and this entire statement, including 1116 | the above license grant, this restriction and the following disclaimer, 1117 | must be included in all copies of the Software, in whole or in part, and 1118 | all derivative works of the Software, unless such copies or derivative 1119 | works are solely in the form of machine-executable object code generated by 1120 | a source language processor. 1121 | 1122 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 1123 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 1124 | FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 1125 | SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 1126 | FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 1127 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 1128 | DEALINGS IN THE SOFTWARE. 1129 | 1130 | ``` 1131 | 1132 | --- 1133 | 1134 | ### [RapidJSON](https://rapidjson.org) by THL A29 Limited, a Tencent company, and Milo Yip 1135 | 1136 | ``` 1137 | Tencent is pleased to support the open source community by making RapidJSON available. 1138 | 1139 | Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. 1140 | 1141 | If you have downloaded a copy of the RapidJSON binary from Tencent, please note that the RapidJSON binary is licensed under the MIT License. 1142 | If you have downloaded a copy of the RapidJSON source code from Tencent, please note that RapidJSON source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of RapidJSON into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within RapidJSON. To avoid the problematic JSON license in your own projects, it's sufficient to exclude the bin/jsonchecker/ directory, as it's the only code under the JSON license. 1143 | A copy of the MIT License is included in this file. 1144 | 1145 | Other dependencies and licenses: 1146 | 1147 | Open Source Software Licensed Under the BSD License: 1148 | -------------------------------------------------------------------- 1149 | 1150 | The msinttypes r29 1151 | Copyright (c) 2006-2013 Alexander Chemeris 1152 | All rights reserved. 1153 | 1154 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1155 | 1156 | * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 1157 | * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 1158 | * Neither the name of copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 1159 | 1160 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES LOSS OF USE, DATA, OR PROFITS OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 1161 | 1162 | Open Source Software Licensed Under the JSON License: 1163 | -------------------------------------------------------------------- 1164 | 1165 | json.org 1166 | Copyright (c) 2002 JSON.org 1167 | All Rights Reserved. 1168 | 1169 | JSON_checker 1170 | Copyright (c) 2002 JSON.org 1171 | All Rights Reserved. 1172 | 1173 | 1174 | Terms of the JSON License: 1175 | --------------------------------------------------- 1176 | 1177 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 1178 | 1179 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 1180 | 1181 | The Software shall be used for Good, not Evil. 1182 | 1183 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 1184 | 1185 | 1186 | Terms of the MIT License: 1187 | -------------------------------------------------------------------- 1188 | 1189 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 1190 | 1191 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 1192 | 1193 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 1194 | 1195 | ``` 1196 | 1197 | --- 1198 | 1199 | ### [geojson.hpp](https://github.com/mapbox/geojson-cpp) by Mapbox 1200 | 1201 | ``` 1202 | Copyright (c) 2016, Mapbox 1203 | 1204 | Permission to use, copy, modify, and/or distribute this software for any 1205 | purpose with or without fee is hereby granted, provided that the above 1206 | copyright notice and this permission notice appear in all copies. 1207 | 1208 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 1209 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 1210 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 1211 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 1212 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 1213 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 1214 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 1215 | 1216 | ``` 1217 | 1218 | --- 1219 | 1220 | ### [geometry.hpp](https://github.com/mapbox/geometry.hpp) by Mapbox 1221 | 1222 | ``` 1223 | Copyright (c) 2016, Mapbox 1224 | 1225 | Permission to use, copy, modify, and/or distribute this software for any 1226 | purpose with or without fee is hereby granted, provided that the above 1227 | copyright notice and this permission notice appear in all copies. 1228 | 1229 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 1230 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 1231 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 1232 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 1233 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 1234 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 1235 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 1236 | ``` 1237 | 1238 | --- 1239 | 1240 | ### [Optional](https://github.com/akrzemi1/Optional) by Andrzej Krzemienski 1241 | 1242 | ``` 1243 | Boost Software License - Version 1.0 - August 17th, 2003 1244 | 1245 | Permission is hereby granted, free of charge, to any person or organization 1246 | obtaining a copy of the software and accompanying documentation covered by 1247 | this license (the "Software") to use, reproduce, display, distribute, 1248 | execute, and transmit the Software, and to prepare derivative works of the 1249 | Software, and to permit third-parties to whom the Software is furnished to 1250 | do so, all subject to the following: 1251 | 1252 | The copyright notices in the Software and this entire statement, including 1253 | the above license grant, this restriction and the following disclaimer, 1254 | must be included in all copies of the Software, in whole or in part, and 1255 | all derivative works of the Software, unless such copies or derivative 1256 | works are solely in the form of machine-executable object code generated by 1257 | a source language processor. 1258 | 1259 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 1260 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 1261 | FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 1262 | SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 1263 | FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 1264 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 1265 | DEALINGS IN THE SOFTWARE. 1266 | 1267 | ``` 1268 | 1269 | --- 1270 | 1271 | ### [variant](https://github.com/mapbox/variant) by Mapbox 1272 | 1273 | ``` 1274 | Copyright (c) MapBox 1275 | All rights reserved. 1276 | 1277 | Redistribution and use in source and binary forms, with or without modification, 1278 | are permitted provided that the following conditions are met: 1279 | 1280 | - Redistributions of source code must retain the above copyright notice, this 1281 | list of conditions and the following disclaimer. 1282 | - Redistributions in binary form must reproduce the above copyright notice, this 1283 | list of conditions and the following disclaimer in the documentation and/or 1284 | other materials provided with the distribution. 1285 | - Neither the name "MapBox" nor the names of its contributors may be 1286 | used to endorse or promote products derived from this software without 1287 | specific prior written permission. 1288 | 1289 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 1290 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 1291 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 1292 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR 1293 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 1294 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES 1295 | LOSS OF USE, DATA, OR PROFITS OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 1296 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 1297 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 1298 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 1299 | ``` 1300 | 1301 | --- 1302 | 1303 | ### [mapbox-common](https://github.com/mapbox/mapbox-sdk-common) by Mapbox 1304 | 1305 | ``` 1306 | Copyright (c) 2021 - Mapbox, Inc. 1307 | 1308 | You may use this code with your Mapbox account and under the 1309 | Mapbox Terms of Service (https://www.mapbox.com/tos/). 1310 | 1311 | All other rights reserved. 1312 | 1313 | =========================================================================== 1314 | 1315 | 1316 | ``` 1317 | 1318 | --- 1319 | 1320 | -------------------------------------------------------------------------------- /MapboxCoreMaps.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |m| 2 | 3 | version = '11.9.4' 4 | 5 | m.name = 'MapboxCoreMaps' 6 | m.version = version 7 | 8 | m.summary = 'Vector map solution for iOS with full styling capabilities.' 9 | m.description = 'Metal-based vector map solution for iOS with full styling capabilities.' 10 | m.homepage = 'https://docs.mapbox.com/ios/maps/' 11 | m.license = { type: 'Commercial', file: 'LICENSE.md' } 12 | m.author = { 'Mapbox' => 'mobile@mapbox.com' } 13 | m.social_media_url = 'https://twitter.com/mapbox' 14 | m.documentation_url = 'https://docs.mapbox.com/ios/beta/maps/guides/install/' 15 | 16 | m.source = { http: "https://api.mapbox.com/downloads/v2/mobile-maps-core/releases/ios/packages/#{version.to_s}/MapboxCoreMaps.xcframework-dynamic.zip" } 17 | 18 | m.platform = :ios 19 | m.ios.deployment_target = '12.0' 20 | m.swift_version = '5.7' 21 | 22 | m.requires_arc = true 23 | 24 | m.vendored_frameworks = 'MapboxCoreMaps.xcframework' 25 | 26 | m.dependency 'MapboxCommon', '~> 24.9' 27 | 28 | end 29 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version:5.7 2 | // The swift-tools-version declares the minimum version of Swift required to build this package. 3 | 4 | import PackageDescription 5 | import Foundation 6 | 7 | let version = "11.9.4" 8 | let checksum = "4eeb07fea4a6bacc2772346741a69032079f88bf12c320cab3956f2b462d76dd" 9 | 10 | let package = Package( 11 | name: "MapboxCoreMaps", 12 | platforms: [.iOS(.v12), .macOS(.v10_15), .custom("visionos", versionString: "1.0")], 13 | products: [ 14 | .library( 15 | name: "MapboxCoreMaps", 16 | targets: ["MapboxCoreMapsWrapper"]), 17 | ], 18 | dependencies: [ 19 | .package(url: "https://github.com/mapbox/mapbox-common-ios.git", from: "24.9.1"), 20 | ], 21 | targets: [ 22 | .target( 23 | name: "MapboxCoreMapsWrapper", 24 | dependencies: [.product(name: "MapboxCommon", package: "mapbox-common-ios"), "MapboxCoreMaps"] 25 | ), 26 | .binaryTarget( 27 | name: "MapboxCoreMaps", 28 | url: "https://api.mapbox.com/downloads/v2/mobile-maps-core/releases/ios/packages/\(version)/MapboxCoreMaps.xcframework-dynamic.zip", 29 | checksum: checksum 30 | ) 31 | ] 32 | ) 33 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MapboxCoreMaps 2 | MapboxCoreMaps is the core map renderer used in the Mapbox Maps SDK. This repository contains the manifests for Swift Package Manager and CocoaPods, making integrating the Mapbox Maps SDK into your iOS projects easy. 3 | 4 | ## Mapbox Maps SDK for iOS 5 | 6 | To learn more about the Mapbox Maps SDK for iOS and explore its features and capabilities, please visit the main repository at https://github.com/mapbox/mapbox-maps-ios. 7 | 8 | ## Documentation 9 | 10 | Comprehensive documentation for the Mapbox Maps SDK for iOS is available at https://docs.mapbox.com/ios/maps/. This documentation provides detailed guides, API references, and examples to help you get started with integrating maps into your iOS applications. 11 | 12 | # License 13 | MapboxCoreMaps is licensed under the [Mapbox Terms of Service](https://www.mapbox.com/legal/tos/). Please review the terms and conditions before using this software in your projects. 14 | -------------------------------------------------------------------------------- /Sources/MapboxCoreMapsWrapper/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/mapbox-core-maps-ios/8960bfc4f87993780b1cf7f7451cf799b07261e8/Sources/MapboxCoreMapsWrapper/Placeholder.swift --------------------------------------------------------------------------------