New maps for the Wiki
#21
Posted 26 November 2011 - 07:38 PM
Going by Twitter, Voyager didn't realise this issue even existed until after ADWD was published. Whoops.
#22
Posted 27 November 2011 - 12:08 AM
#23
Posted 27 November 2011 - 06:05 AM
mor2, on 23 November 2011 - 04:02 PM, said:
The Portal looks very nice. Great work!
#24
Posted 27 November 2011 - 05:19 PM
#25
Posted 03 December 2011 - 03:31 AM
#26
Posted 03 December 2011 - 10:55 AM
#27
Posted 10 December 2011 - 05:06 PM
For those wanting a peek, I have some pictures at http://dantas.com/so...maps/uk_pb_affc
I may take them off later, or substitute some for others with better quality or better presentation.
As I understand it, other than the border artwork the last two maps are well-known already (King's Landing and Iron Islands). North, South and Beyond the Wall are already available, but with different art entirely. The Lands of the Summer Sea I don't think we have yet.
Edited by LuisDantas, 10 December 2011 - 05:08 PM.
#28
Posted 10 December 2011 - 06:27 PM
Something that I find mildly disappointing about the new UK editions is that they don't use a unified map scheme, but use a hodgepodge of the new ADWD-era maps, Sinclair's old CAD maps and Geiger's ASoS stuff. Simply using all of the ADWD Ward maps (including the North and South maps left out of the UK ADWD edition) would have made a lot more sense.
#29
Posted 13 January 2012 - 02:11 AM
#30
Posted 13 January 2012 - 06:39 AM
any problems/suggestions for visibility/font/colour/markers/orientations/positions/whatever.
EDIT:
I am considering to do a "two level map", that is adding a thumbnail representation of the normal map, since zoomed out as it would be hard to notice anything on the pages, so I only show the most important things on it. meanwhile I toyed with idea of removing the typographic part.
http://i43.tinypic.com/2upcwox.jpg
or with labels;
http://i43.tinypic.com/naurc.jpg
Edited by mor2, 13 January 2012 - 02:59 PM.
#31
Posted 18 January 2012 - 09:06 PM
mor2, on 13 January 2012 - 06:39 AM, said:
any problems/suggestions for visibility/font/colour/markers/orientations/positions/whatever.
EDIT:
I am considering to do a "two level map", that is adding a thumbnail representation of the normal map, since zoomed out as it would be hard to notice anything on the pages, so I only show the most important things on it. meanwhile I toyed with idea of removing the typographic part.
http://i43.tinypic.com/2upcwox.jpg
or with labels;
http://i43.tinypic.com/naurc.jpg
the first map looks awesome. Looking forward to your finished product!
#32
Posted 20 January 2012 - 10:42 AM
I finished the complete map and starting to cut region maps, here are few examples:
http://i41.tinypic.com/jujx9v.png
http://i40.tinypic.com/24g5a87.jpg
I am also working on "simplified maps" which would either like our Current Maps without the topographical info or like other online maps works when zoomed out i.e. without much of the small details. (no river names and small towns only region names and major locations).
if you have ideas regarding a better colour schemes, fonts or any other ideas on how to use maps in the wiki, please share....
#33
Posted 20 January 2012 - 11:07 AM
#34
Posted 26 January 2012 - 12:57 AM
I think the color scheme is fine as is. Because of its simplicity it makes everything super easy to read and isn't hard on the eyes. It also opens up possibilities for adding movements and battle overlays like this: http://i40.tinypic.com/e0g1ns.jpg
#35
Posted 29 January 2012 - 10:03 AM
#36
Posted 29 January 2012 - 03:35 PM
#37
Posted 03 February 2012 - 08:06 AM
#38
Posted 05 February 2012 - 06:05 PM
Basically what we need to do is to replace the ground layer with our own layer, they it should be split to smaller sections, so that each time you want to look at winterfell or load another layer you wouldnt have to wait for a few MB to load, this will improve response time for the users and reduce server traffic. On top of that we should add additional layers, which can be anything from political borders to topographic map.
there are few simple exaples and documentation on how to achieve that on the google web site, however I hope it would be simpler and I would find away to change the parameters I need to allow us the use of this extension. (less problems than us re inventing the wheel with JS).
#39
Posted 08 February 2012 - 06:50 AM
#40
Posted 08 February 2012 - 10:22 AM
for example:
http://content.turbi.../2/me_2_0x2.png
http://content.turbi.../2/me_2_0x4.png
We should need the same, Base and Topography will do. next they have their code on the main page (which should create the Map doc and Types, the remarks should make it obvious):
<script type="text/javascript">
var territoryId = '';
var currentCenterLatLng = '';
var currentCenterLat = '';
var currentCenterLng = '';
var currentTypeSelection;
/**
* Sets up a specific Google Map on the page.
* There is one of these functions generated for every Google Map on the page.
*/
function makeMap1328712098() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map1328712098"), {logoPassive:true});
GME_DEFAULT_ICON = G_DEFAULT_ICON;
// Add our map types and remove the common Google types
map.addMapType(G_GAME_MAP);
map.addMapType(G_PARCHMENT_MAP);
map.removeMapType(G_NORMAL_MAP);
map.removeMapType(G_SATELLITE_MAP);
map.removeMapType(G_HYBRID_MAP);
// Set the center of the map
map.setCenter(new GLatLng(-8.31, -47.54), 3, G_GAME_MAP);
currentCenterLat = -8.31;
currentCenterLng = -47.54;
// Enable zooming via mouse scroll wheel and double click
map.enableContinuousZoom();
map.enableScrollWheelZoom();
map.enableDoubleClickZoom();
GEvent.addDomListener(document.getElementById('map1328712098'), "DOMMouseScroll", wheelevent);
document.getElementById('map1328712098').onmousewheel = wheelevent;
// Open up the caption for a map marker
GEvent.addListener(map, 'click',
function(overlay, point) {
if (overlay) {
if (overlay.tabs) {
overlay.openInfoWindowTabsHtml(overlay.tabs);
} else if (overlay.caption) {
overlay.openInfoWindowHtml(overlay.caption);
}
}
}
);
// Add the control to switch between map types
map.addControl(new GLargeMapControl());
map.addControl(new GMenuMapTypeControl(), new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(25, 1)));
// Set the initial map type to be our parchment maps
map.setMapType(G_PARCHMENT_MAP);
// Add the control to select what types of things around you to find
map.addControl(new TurbineGMapObjectSelection());
// If we are not in-game, this will detect the 'center' of the current map view.
// If there is a selection made for 'X things around me', it will then fetch/display
// those things around that center point.
GEvent.addListener(map, 'dragend',
function() {
// Are we not in-game/have a character position on the map?
if(!markers['characterPosition']) {
// Find the center point of the current view of the map
currentCenterLatLng = map.getCenter();
currentCenterLat = currentCenterLatLng.lat();
currentCenterLng = currentCenterLatLng.lng();
// Fire off the change event for the type selection element
currentTypeSelection = $("#" + map.getContainer().getAttribute("id") + " select[name='tgmObjSelect'] option:selected").attr("value");
TurbineWhatsAroundMe();
}
}
);
} else {
// Cannot render the map; let the user know
document.getElementById("map1328712098").innerHTML = "In order to see the map that would go in this space, you will need to use a <a href=\"http://local.google.com/support/bin/answer.py?answer=16532&topic=1499\">compatible web browser</a>.";
}
// The first map on the page is recorded
if(firstMap == null) {
firstMap = map;
}
}
// When things are loaded up, fire off the makeMap(ID) functions
makeMap1328712098();
</script>
Other than that there is map placement itslef and the Google key and the rest of it should be at: http://content.turbi...trogooglemap.js which should deal with the various layers, icons and most importantly loading of the map tiles, but this all should be at the google docs with examples and documnetation (http://code.google.c...emogallery.html side bar)
The real question is how do we use it inside wiki, i have no doubt we can make the JS work, but how do we make it simple to use for our editors i.e. somethnig like the map extension you added:
{{#display_map:44.521, 9.0568|width=400|height=300|layer=osm|zoom=18}}
because it seem to me that letting everyone them play with JS on the wiki is not option/
Edited by mor2, 08 February 2012 - 10:23 AM.







