-
Notifications
You must be signed in to change notification settings - Fork 38
Commits on Jul 7, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 6719860 - Browse repository at this point
Copy the full SHA 6719860View commit details
Commits on Jul 19, 2015
-
Although an HTTP request ending with `.png` could return anything, this particular source is referring to vector tiles, so an example with an URL ending in `.pbf` is more appropriated.
Configuration menu - View commit details
-
Copy full SHA for 119c07b - Browse repository at this point
Copy the full SHA 119c07bView commit details
Commits on Jul 22, 2015
-
Configuration menu - View commit details
-
Copy full SHA for d30b4e8 - Browse repository at this point
Copy the full SHA d30b4e8View commit details -
Merge pull request #319 from mapbox/text-rotate-no-interpolate
Make it clear that text-rotate is not an interpolated property
Configuration menu - View commit details
-
Copy full SHA for bd31510 - Browse repository at this point
Copy the full SHA bd31510View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6228eba - Browse repository at this point
Copy the full SHA 6228ebaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a8908e - Browse repository at this point
Copy the full SHA 2a8908eView commit details
Commits on Jul 23, 2015
-
Configuration menu - View commit details
-
Copy full SHA for c15aa64 - Browse repository at this point
Copy the full SHA c15aa64View commit details
Commits on Aug 5, 2015
-
Fast, semantically aware style diff utility. The differ compares two stylesheets creating a list of changes. Operations produced by the diff resemble the mapbox-gl-js API in spirit. Any error creating the diff will fall back to the 'setStyle' operation. Operations: - setStyle - addLayer - removeLayer - setPaintProperty - setLayoutProperty - setFilter - setLayerZoomRange - setLayerProperty - addSource - removeSource - setConstant - setSprite - setGlyphs - setTransition Example diff: [ { command: 'setConstant', args: ['@water', '#0000FF'] }, { command: 'setPaintProperty', args: ['background', 'background-color', 'black'] } ] Applying the diff is an exercise left to each mapbox-gl implementation. A crude mapbox-gl-js implementation would look like: var changes = diff(oldStylesheet, newStylesheet); try { map.batch(function (batch) { changes.forEach(function (change) { batch[change.command].apply(batch, change.args); }); }); } catch (e) { console.warn('Unable to apply diff:', e); map.setStyle(newStylesheet); }
Configuration menu - View commit details
-
Copy full SHA for 3782e79 - Browse repository at this point
Copy the full SHA 3782e79View commit details -
Merge pull request #317 from mapbox/pbf_instead_png
Fix misleading source example
Configuration menu - View commit details
-
Copy full SHA for 2479011 - Browse repository at this point
Copy the full SHA 2479011View commit details -
Configuration menu - View commit details
-
Copy full SHA for 725c409 - Browse repository at this point
Copy the full SHA 725c409View commit details -
Configuration menu - View commit details
-
Copy full SHA for f6f2149 - Browse repository at this point
Copy the full SHA f6f2149View commit details -
Revert "Make it clear that text-rotate is not an interpolated property"
text-rotate is an interpolated property, but like other layout properties, it is evaluated only at integer zoom levels. This reverts commit d30b4e8.
Configuration menu - View commit details
-
Copy full SHA for b97ba5a - Browse repository at this point
Copy the full SHA b97ba5aView commit details
Commits on Aug 6, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 83a9470 - Browse repository at this point
Copy the full SHA 83a9470View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b46260 - Browse repository at this point
Copy the full SHA 1b46260View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5653bfc - Browse repository at this point
Copy the full SHA 5653bfcView commit details -
Configuration menu - View commit details
-
Copy full SHA for ef5ecfc - Browse repository at this point
Copy the full SHA ef5ecfcView commit details
Commits on Aug 10, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 25641ed - Browse repository at this point
Copy the full SHA 25641edView commit details
Commits on Aug 11, 2015
-
Merge pull request #333 from mapbox/v8-remove-ops
Remove color ops from v8
Configuration menu - View commit details
-
Copy full SHA for 5429f9b - Browse repository at this point
Copy the full SHA 5429f9bView commit details
Commits on Aug 12, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 7940fa7 - Browse repository at this point
Copy the full SHA 7940fa7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8555318 - Browse repository at this point
Copy the full SHA 8555318View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1046778 - Browse repository at this point
Copy the full SHA 1046778View commit details -
Lucas Wojciechowski committed
Aug 12, 2015 Configuration menu - View commit details
-
Copy full SHA for 87c4620 - Browse repository at this point
Copy the full SHA 87c4620View commit details
Commits on Aug 13, 2015
-
Configuration menu - View commit details
-
Copy full SHA for d6a0c08 - Browse repository at this point
Copy the full SHA d6a0c08View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8d0ba25 - Browse repository at this point
Copy the full SHA 8d0ba25View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c6d353 - Browse repository at this point
Copy the full SHA 1c6d353View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6eb0e1b - Browse repository at this point
Copy the full SHA 6eb0e1bView commit details -
Remove mapbox-gl-styles validation check
This happens in mapbox-gl-styles. Doing it here too creates a circular dependency.
Configuration menu - View commit details
-
Copy full SHA for 1a53df4 - Browse repository at this point
Copy the full SHA 1a53df4View commit details -
Merge branch 'mb-pages' into v8
Conflicts: CHANGELOG.md package.json
Configuration menu - View commit details
-
Copy full SHA for b0e4970 - Browse repository at this point
Copy the full SHA b0e4970View commit details
Commits on Aug 14, 2015
-
Lucas Wojciechowski committed
Aug 14, 2015 Configuration menu - View commit details
-
Copy full SHA for 66cc08c - Browse repository at this point
Copy the full SHA 66cc08cView commit details -
Lucas Wojciechowski committed
Aug 14, 2015 Configuration menu - View commit details
-
Copy full SHA for e860081 - Browse repository at this point
Copy the full SHA e860081View commit details -
- remove setConstant - add setCenter - add setZoom - add setBearing - add setPitch Issue: #338
Configuration menu - View commit details
-
Copy full SHA for 42a2961 - Browse repository at this point
Copy the full SHA 42a2961View commit details -
Add 'pitch' as a $root property
'pitch' follows 'center', 'zoom' and 'bearing' to define the default camera position. 0 degrees is perpendicular to the surface. Issue: #341
Configuration menu - View commit details
-
Copy full SHA for 6923792 - Browse repository at this point
Copy the full SHA 6923792View commit details
Commits on Aug 15, 2015
-
Future proof url.parse() for font stack v8 migrations
In new versions of Node and browserify `URL.parse()` URL encodes properties on the resulting object. This has the effect of breaking the migration script in the browser. We can decodeURI the path segments we need to compare in a manner that is backwards and future compatible. Tested with: - browserify - Node 0.10 - IO 3.0
Configuration menu - View commit details
-
Copy full SHA for 446f0fd - Browse repository at this point
Copy the full SHA 446f0fdView commit details
Commits on Aug 17, 2015
-
Add visibility layout property for circles
Every other layer type already supports visibility.
Configuration menu - View commit details
-
Copy full SHA for a8d26dc - Browse repository at this point
Copy the full SHA a8d26dcView commit details -
Simplify layout/paint property types
Types were made more specific to add extra type safety around constants. Without constants, we no longer need these more specific types. Fewer, well-known types makes tooling support easier. - '*-enum' -> 'enum' - '*-array' -> 'array' - 'opacity' -> 'number' - 'field-template' -> 'string'
Configuration menu - View commit details
-
Copy full SHA for 937cc97 - Browse repository at this point
Copy the full SHA 937cc97View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c84895 - Browse repository at this point
Copy the full SHA 6c84895View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb01ce6 - Browse repository at this point
Copy the full SHA eb01ce6View commit details -
Configuration menu - View commit details
-
Copy full SHA for bbb6ba8 - Browse repository at this point
Copy the full SHA bbb6ba8View commit details
Commits on Aug 21, 2015
-
Configuration menu - View commit details
-
Copy full SHA for fe768eb - Browse repository at this point
Copy the full SHA fe768ebView commit details
Commits on Aug 27, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 974558d - Browse repository at this point
Copy the full SHA 974558dView commit details