// PIN PLUS LABEL AND URL: Malolos City with clickable URL
L.marker([14.8432, 120.8114]).addTo(map)
.bindPopup('Makasaysayang Lungsod ng Malolos
<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('Bulacan State University (BulSU)
<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 Barasoain Church
var barasoainPolygon = L.polygon([
[14.846952933499336, 120.81225915935168],
[14.84639927994201, 120.81201259956772],
[14.846204950097054, 120.81256261510248],
[14.846740270448107, 120.81277883038656],
], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.4
}).addTo(map);
barasoainPolygon.bindPopup('Barasoain Church
<a href="https://wikimalolos.com/wikimalolos/index.php/Barasoain_Church" target="_blank">Read Article</a>');