summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* [core] retain tiles differently and remove old TileID classKonstantin Käfer2016-05-1016-495/+346
|
* [core] move TileData and dependents to new *TileID classesKonstantin Käfer2016-05-1038-123/+146
|
* [core] move Tile to use UnwrappedTileIDKonstantin Käfer2016-05-106-26/+27
|
* [core] move Painter and dependents to new *TileID classesKonstantin Käfer2016-05-1028-260/+140
|
* [core] add algorithm for generating clip IDs based on the new TileID classesKonstantin Käfer2016-05-105-0/+207
|
* [core] add algorithm for detecting whether an ordered map contains covering ↵Konstantin Käfer2016-05-101-0/+34
| | | | children
* [core] introduce three distinct TileID typesKonstantin Käfer2016-05-102-0/+308
| | | | | | * CanonicalTileID has z, x, and y, with x/y being within the bounds z defines. z can be anything from 0-32. * OverscaledTileID is composed of a z value, and a canonical tile. The z value indicates the zoom level the tile is intended for. It is primarily used for indexing overscaled data tiles. * UnwrappedTileID is composed of a wrap value, and a canonical tile. The wrap value is used for representing tiles to the left and right of the main (0/0/0 based) tile pyramid. It is primarily used for indicating the position a tile should be rendered at.
* [ios, osx] Renamed Hybrid to Satellite StreetsMinh Nguyễn2016-05-061-6/+6
| | | | The style ID has also changed, but the unversioned method will continue to point to the old v8 style ID.
* [core, ios, osx] Version default style URL APIs; deprecated EmeraldMinh Nguyễn2016-05-061-6/+6
| | | | | | | | | | Updated default styles from v8 to v9. Deprecated the MGLMapView class methods in favor of new methods that take a version parameter. Deprecated Emerald outright in favor of Outdoors. Replaced usage of the unversioned MGLStyle methods with the corresponding versioned methods and MGLStyleCurrentVersion to ensure consistency. Expanded MGLStyle unit tests to also assert that MGLStyle has the right number of style URL methods and that they’re all public. Linked the OS X SDK unit test bundle to libmbgl-core.a. Removed an unnecessary dependency on osxapp. Replaced Emerald with Outdoors in iosapp and osxapp. Fixes the iOS and OS X side of #4577 and #4702.
* [core] Implement has/!has filters (#4952)John Firebaugh2016-05-053-2/+45
|
* [core] Use geometry.hpp's pointJohn Firebaugh2016-05-0530-353/+236
|
* [core] Inline LatLng::project definition the one place it's usedJohn Firebaugh2016-05-052-13/+10
|
* [core] Privatize math.hpp and vec.hppJohn Firebaugh2016-05-0512-9/+257
|
* [Qt] Make it possible to disable libwebp and libjpeg-turbo at build timeThiago Marcos P. Santos2016-05-051-2/+2
| | | | Pull less dependencies.
* [core] Privatize various util headers (#4945)John Firebaugh2016-05-044-0/+142
|
* [core] consistently protect against invalid tag encoding in vector tileDane Springmeyer2016-05-041-0/+3
|
* [core] Merge pull request #4914 from bwhtmn/camera-paddingBrent W2016-05-041-1/+1
| | | | | Fix a bug in applying padding to the camera. Fixes #4862.
* [core] Simplify FilterEvaluator and fix crashJohn Firebaugh2016-05-045-39/+20
| | | | Previous implementation was assigning a temporary to FilterEvaluator<T>::extractor.
* [core] Use geometry.hpp feature typeJohn Firebaugh2016-05-0317-74/+47
|
* [core] port to protozero (#4906)Dane Springmeyer2016-05-034-278/+109
|
* [core] Remove duplicate copy of utf.hppJohn Firebaugh2016-05-021-2/+2
|
* [core] Remove unusedJohn Firebaugh2016-05-021-11/+0
|
* [core] use a GridIndex for queryRenderedFeaturesAnsis Brammanis2016-04-295-58/+142
|
* [core] implement queryRenderedFeaturesAnsis Brammanis2016-04-2942-107/+1123
|
* [linux] Build with GCC 5 (#4901)John Firebaugh2016-04-291-6/+1
| | | | | | * [linux] Build with GCC 5 * [build] -fabi-version=0 is the default for GCC 5
* [core] port outlinepattern for fill-pattern anti-aliasing from gl-js to nativeMolly Lloyd2016-04-289-2/+164
| | | | | | | | | | | | | | add outlinepattern shader class to relevant files add outlinepattern code to painter_fill.cpp add outlinepattern code to fill_bucket refactor painter_fill, fix tests fix merge conflicts and setDepthSublayer update render test to no antialiasing so travis will be happy
* [core] Prepare Filter for public API (#4900)John Firebaugh2016-04-2818-554/+415
|
* [core] Eliminate interpolate special cases (#4882)John Firebaugh2016-04-283-42/+57
|
* [core] Added mbgl::underlying_typeBruno de Oliveira Abinader2016-04-281-5/+4
|
* [core] Rewrite parsePropertyTransition to work around GCC 4.9 bugJohn Firebaugh2016-04-261-15/+18
|
* [core] Simplify property parsingJohn Firebaugh2016-04-264-176/+115
| | | | This is a followup to #4811. Now that use of Function is consistent, we can have a single separate parseProperty template function that delegates to a parseConstant template function.
* use Clock::time_point::max() instead of frame timeMike Morris2016-04-261-2/+2
| | | | | | For Style::cascade and Style::recalculate, when rendering with MapMode::Still. Fixes a subtle race condition with animated transitions exacerbated by cd1a06c2dc209da81b3d745c088e568b3b14809f.
* [core] Define mbgl::variant (#4833)John Firebaugh2016-04-257-12/+22
| | | For parallelism with mbgl::optional, and to avoid exposing namespaces other than `mbgl` in the public API.
* [core] Move enum type classes to implementation (#4831)John Firebaugh2016-04-252-0/+63
|
* [core] Extract Function::evaluation to a separate class (#4811)John Firebaugh2016-04-2510-99/+81
| | | This allows the Function<Faded<T>> partial specialization to be eliminated, giving all property functions a consistent storage type.
* [core, ios, osx] cameraThatFitsCoordinateBoundsMinh Nguyễn2016-04-223-2/+18
| | | | | | Added an API to get a camera that you can pass into -[MGLMapView setCamera:] that fits the given coordinate bounds, by analogy with -[MKMapView regionThatFits:] or -[MKMapView mapRectThatFits:edgePadding:]. Added mbgl::Map::getCameraOptions() for getting the current camera options more conveniently.
* [core] Use the proper type for font stacksJohn Firebaugh2016-04-2216-62/+89
|
* [core] FontStack ⇢ GlyphSet (#4803)John Firebaugh2016-04-229-35/+34
| | | A font stack is an array of font names. This is not that.
* [core] Quarantine style property irregularities in layer classes (#4792)John Firebaugh2016-04-2210-38/+27
| | | This moves the *{Layout,Paint}Properties classes closer to code generation.
* [core] Fix default value for text-max-widthJohn Firebaugh2016-04-211-1/+1
| | | | Fixes #4788
* [core] Make Function constructor explicitJohn Firebaugh2016-04-211-4/+2
|
* [core] Adopt a strict naming convention for style propertiesJohn Firebaugh2016-04-2127-544/+571
| | | | This will allow code to be generated from the style specification.
* [core] PlacementType ⇢ SymbolPlacementTypeJohn Firebaugh2016-04-216-17/+17
|
* [core] JoinType ⇢ LineJoinTypeJohn Firebaugh2016-04-216-24/+24
|
* [core] CapType ⇢ LineCapTypeJohn Firebaugh2016-04-216-16/+16
|
* Revert "[core] Do not clear custom layers upon style switch"Bruno de Oliveira Abinader2016-04-211-3/+1
| | | | This reverts commit 8ec875b87c387713d7e4df5c90e6cac7669ed38b.
* [core] Do not clear custom layers upon style switchBruno de Oliveira Abinader2016-04-211-1/+3
|
* [core] remove unused code in value.hpp (#4768)Dane Springmeyer2016-04-201-23/+0
| | | Noticed this dead code while reviewing `mapbox::variant` usage with @artemp
* [Qt] Introduce the Qt HTTPRequest and HTTPFileSourceThiago Marcos P. Santos2016-04-201-2/+2
|
* [core] look for loaded parent tiles in cache (#4595)Ansis Brammanis2016-04-152-3/+9
| | | | | fix #4047 port https://github.com/mapbox/mapbox-gl-js/pull/2158