Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tilemap refactor #3445

Merged
merged 42 commits into from
Apr 9, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
9292cef
change worldBounds param to give more space to east and west bounds o…
Mar 4, 2015
b937b4f
increase max zoom to 18 and remove unused param, closes #3160
Mar 4, 2015
0fc142c
set min zoom to 1
Mar 4, 2015
ff44620
add pinMarkers method, add rectangleMarkers method
Mar 4, 2015
1cf1fb4
add methods for markerType, pinMarkers, rectangleMarkers
Mar 4, 2015
b288991
add UI options for pinMarkers, rectangleMarkers
Mar 4, 2015
ab65315
adding tilemap tests
Mar 5, 2015
0ce7270
Merge branch 'master' into tilemap-refactor
Mar 11, 2015
f745a4a
moved functions out of TileMap.draw
Mar 17, 2015
c5ef5f8
zoom to bounds on featureLayer data bounds on map load, switch from p…
Mar 17, 2015
cc5fa8d
removed dummy tests in tilemap
Mar 17, 2015
247b76a
Merge branch 'master' into tilemap-refactor
Mar 17, 2015
ad7d558
change default geohash precision max from 6 to 7, add note about max …
Mar 17, 2015
c431155
tilemap update of low-hanging fruit
Mar 23, 2015
af0d4be
Merge branch 'master' into tilemap-refactor
Mar 23, 2015
66a54db
Merge branch 'master' into tilemap-refactor
Mar 23, 2015
55d4177
changed scaling of circle markers to get radius in meters from min of…
Mar 24, 2015
e2f961e
Merge branch 'master' into tilemap-refactor
Mar 24, 2015
097ac6a
add legend to scaled geohash grid, removed precisionSize array
Mar 24, 2015
e1b5a27
add legend to scaled geohash grid, removed precisionSize array
Mar 24, 2015
404105f
cleaning up jslint issues
Mar 24, 2015
9481253
cleaning up more jslint issues
Mar 24, 2015
e400059
added more tests for tilemap
Mar 24, 2015
b89a449
Merge branch 'tilemap-refactor' of https://github.com/jthomassie/kiba…
Mar 24, 2015
89a6c2f
changed variable names to be more descriptive
Mar 30, 2015
dacb42d
fixes error, zooms to bounds only if mapData and mapData has features
Mar 30, 2015
d158e78
adds labels to map when there are splits
Mar 30, 2015
91cb31a
fix scope of var div
Mar 30, 2015
1dd3dcb
added error for ContainerTooSmall and tests
Mar 31, 2015
13f670b
removed zoom to bounds on draw method to revert to behavior in master
Apr 1, 2015
6ee98ce
improved geohashMinDistance method to size circles by distance at cen…
Apr 2, 2015
9e8b280
cleaned up a few unsued vars and comments
Apr 2, 2015
59782c5
removed error for ContainerTooSmall and tests for ContainerTooSmall
Apr 2, 2015
0a01c50
Merge branch 'master' into tilemap-refactor
Apr 2, 2015
ef66675
move center and zoom vars out of draw method to save last change
Apr 3, 2015
904bd83
Merge branch 'master' into tilemap-refactor
Apr 3, 2015
7f960a2
added comments, renamed vars, removed a few unused vars
Apr 7, 2015
4dd200a
fix test that was failing due to deleted param
Apr 8, 2015
ddd580d
Merge branch 'master' into tilemap-refactor
Apr 8, 2015
5d9d2c2
updated comment to be clearer
Apr 8, 2015
6a5e1e9
removed a few vars no longer used, added method for a style function …
Apr 9, 2015
9733f92
Merge branch 'master' into tilemap-refactor
Apr 9, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/kibana/components/config/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ define(function (require) {
description: 'Never show more than this many bar in date histograms, scale values if needed',
},
'visualization:tileMap:maxPrecision': {
value: 6,
description: 'The maximum geoHash size allowed in a tile map',
value: 7,
description: 'The maximum geoHash precision displayed on tile maps: 7 is high, 10 is very high, ' +
'12 is the max. Explanation of cell dimensions: http://www.elastic.co/guide/en/elasticsearch/reference/current/' +
'search-aggregations-bucket-geohashgrid-aggregation.html#_cell_dimensions_at_the_equator',
},
'csv:separator': {
value: ',',
Expand Down
Loading