Sandbox: Cultural Mapping: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
Line 23: Line 23:
   }).addTo(map);
   }).addTo(map);


  // PIN PLUS LABEL AND URL: Malolos City with clickable URL
   
  L.marker([14.8432, 120.8114]).addTo(map)
    .bindPopup('<b>Makasaysayang Lungsod ng Malolos</b><br><a href="https://malolos.gov.ph" target="_blank">Visit Website</a>')
    .openPopup();
 
  // PIN PLUS LABEL AND URL: Bulacan State University with article link
  L.marker([14.857882, 120.813859]).addTo(map)
    .bindPopup('<b>Bulacan State University (BulSU)</b><br><a href="https://wikimalolos.com/wikimalolos/index.php/Making_a_Case_for_a_Historical_Founding_Date_of_Bulacan_State_University" target="_blank">Read Historical Article</a>');
 
  // POLYGON PLUS LABEL ONLY: Approximate boundary of Bulacan State University
  var bulsuPolygon = L.polygon([
    [14.857630581410698, 120.81184712962074],
    [14.859724860926136, 120.81430888041209],
    [14.858521919350292, 120.81543541601346],
    [14.856447885966825, 120.81283903663416],
  ], {
    color: 'red',
    fillColor: '#f03',
    fillOpacity: 0.4
  }).addTo(map);
 
  bulsuPolygon.bindPopup('Bulacan State University Campus');
 
  // POLYGON PLUS LABEL AND URL: Approximate boundary of Ancestral House of Jacinto-Lomotan in Malolos City
  var lomotanPolygon = L.polygon([
    [14.842683313281473, 120.80980602907323],
    [14.842716275863445, 120.80993816820266],
    [14.842591292713529, 120.80996374351803],
    [14.8425624504379, 120.80983444609032],
  ], {
    color: 'red',
    fillColor: '#f03',
    fillOpacity: 0.4
  }).addTo(map);
 
  lomotanPolygon.bindPopup('<b>Barasoain Church</b><br><a href="https://wikimalolos.com/wikimalolos/index.php/Ancestral_House_of_Jacinto-Lomotan_in_Malolos_City" target="_blank">Read Article</a>');
 
// POLYGON PLUS LABEL AND URL: Approximate boundary of Ancestral House of Jacinto-Lomotan in Malolos City
  var lomotanPolygon = L.polygon([
    [14.842683313281473, 120.80980602907323],
    [14.842716275863445, 120.80993816820266],
    [14.842591292713529, 120.80996374351803],
    [14.8425624504379, 120.80983444609032],
  ], {
    color: 'red',
  }).addTo(map);
 
  lomotanPolygon.bindPopup('<b>Lomotan House</b><br><a href="https://wikimalolos.com/wikimalolos/index.php/Ancestral_House_of_Jacinto-Lomotan_in_Malolos_City" target="_blank">Read Article</a>');




Navigation menu