Fixed maps
This commit is contained in:
parent
6fc5aa1ee4
commit
1f242c545b
|
@ -43,7 +43,10 @@
|
||||||
|
|
||||||
function mapCallback(createMap,content,locale) {
|
function mapCallback(createMap,content,locale) {
|
||||||
let map = createMap([22, 0],2)
|
let map = createMap([22, 0],2)
|
||||||
addMarkersEntries(entries,entriesByCountry,map,content,locale,addGroupPinContent,"green")
|
let options = {
|
||||||
|
enableCountryGrouping: true,
|
||||||
|
}
|
||||||
|
addMarkersEntries(entries,entriesByCountry,map,content,locale,addGroupPinContent,"green",options)
|
||||||
}
|
}
|
||||||
|
|
||||||
function getCountry(x) {
|
function getCountry(x) {
|
||||||
|
|
|
@ -51,10 +51,13 @@
|
||||||
|
|
||||||
function mapCallback(createMap,content,locale) {
|
function mapCallback(createMap,content,locale) {
|
||||||
let map = createMap([22, 0],2)
|
let map = createMap([22, 0],2)
|
||||||
let groupsMarkersLayer = addMarkersEntries(entries["groups"],entriesByCountry["groups"],map,content,locale,addGroupPinContent,"green")
|
let options = {
|
||||||
let communesMarkersLayer = addMarkersEntries(entries["communes"],entriesByCountry["communes"],map,content,locale,addCommunePinContent,"red")
|
enableCountryGrouping: true,
|
||||||
let coopsMarkersLayer = addMarkersEntries(entries["cooperatives"],entriesByCountry["cooperatives"],map,content,locale,addCoopPinContent,"blue")
|
}
|
||||||
let partiesMarkersLayer = addMarkersEntries(entries["parties"],entriesByCountry["parties"],map,content,locale,addPartyPinContent,"gold")
|
let groupsMarkersLayer = addMarkersEntries(entries["groups"],entriesByCountry["groups"],map,content,locale,addGroupPinContent,"green",options)
|
||||||
|
let communesMarkersLayer = addMarkersEntries(entries["communes"],entriesByCountry["communes"],map,content,locale,addCommunePinContent,"red",options)
|
||||||
|
let coopsMarkersLayer = addMarkersEntries(entries["cooperatives"],entriesByCountry["cooperatives"],map,content,locale,addCoopPinContent,"blue",options)
|
||||||
|
let partiesMarkersLayer = addMarkersEntries(entries["parties"],entriesByCountry["parties"],map,content,locale,addPartyPinContent,"gold",options)
|
||||||
|
|
||||||
let overlayMaps = {}
|
let overlayMaps = {}
|
||||||
overlayMaps[content.groups] = groupsMarkersLayer
|
overlayMaps[content.groups] = groupsMarkersLayer
|
||||||
|
|
|
@ -43,7 +43,10 @@
|
||||||
|
|
||||||
function mapCallback(createMap,content,locale) {
|
function mapCallback(createMap,content,locale) {
|
||||||
let map = createMap([22, 0],2)
|
let map = createMap([22, 0],2)
|
||||||
addMarkersEntries(entries,entriesByCountry,map,content,locale,addPartyPinContent,"gold")
|
let options = {
|
||||||
|
enableCountryGrouping: true,
|
||||||
|
}
|
||||||
|
addMarkersEntries(entries,entriesByCountry,map,content,locale,addPartyPinContent,"gold",options)
|
||||||
}
|
}
|
||||||
|
|
||||||
function getCountry(x) {
|
function getCountry(x) {
|
||||||
|
|
|
@ -43,7 +43,10 @@
|
||||||
|
|
||||||
function mapCallback(createMap,content,locale) {
|
function mapCallback(createMap,content,locale) {
|
||||||
let map = createMap([22, 0],2)
|
let map = createMap([22, 0],2)
|
||||||
addMarkersEntries(entries,entriesByCountry,map,content,locale,addPartnersPinContent,"blue")
|
let options = {
|
||||||
|
enableCountryGrouping: true,
|
||||||
|
}
|
||||||
|
addMarkersEntries(entries,entriesByCountry,map,content,locale,addPartnersPinContent,"blue",options)
|
||||||
}
|
}
|
||||||
|
|
||||||
function getCountry(x) {
|
function getCountry(x) {
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue