Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if (typeof jQuery.vectorMap === 'function') {
- var markers = [
- { latLng: [41.9097306, 12.2558141], name: 'Roma' }, { latLng: [55.5807481, 36.8251304], name: 'Moscow' }, { latLng: [33.5320, 35.2939], name: 'Beirut' }, { latLng: [41.049, 28.5658], name: 'Istanbul' }, { latLng: [51.3030, -0.0732], name: 'London' }, { latLng: [34.0308, -118.1437], name: 'Los Angeles' }, { latLng: [31.1000, 121.25], name: 'Shanghai' }, { latLng: [14.3615, 120.5856], name: 'Manila' }, { latLng: [32.0342, 118.4640], name: 'Nanjin' }, { latLng: [6.5554, 79.5052], name: 'Colombo' }, { latLng: [37.5846, 23.4258], name: 'Athens' }, { latLng: [43.5200, 10.1400], name: 'Viareggio' }, { latLng: [52.22, 4.54], name: 'Amsterdam' }, { latLng: [4.72, 7.15], name: 'Onne' }, { latLng: [7.59, 98.20], name: 'Phuket' }, { latLng: [26.12, 50.34], name: 'Bahrain' }, //{latLng: [43.93, 12.46], name: 'Roma, 2 progetti'},
- ];
- jQuery('#map').vectorMap({
- map: 'world_mill',
- markers: markers,
- backgroundColor: 'transparent',
- zoomOnScroll: false,
- markerStyle:
- {
- initial: {
- image: 'https://fm-arch-2023.uaoh.eu/wp-content/themes/fmarch-child/images/pin-black.svg',
- width: 20
- }
- },
- markerLabelStyle:
- {
- initial: {
- 'font-family': 'Inter',
- 'font-size': '16',
- 'font-weight': 'bold',
- cursor: 'default',
- fill: 'black'
- },
- hover: {
- cursor: 'pointer'
- }
- },
- regionStyle:
- {
- initial:
- {
- fill: '#ddd',
- "fill-opacity": 1,
- stroke: 'none',
- "stroke-width": 0,
- "stroke-opacity": 1,
- cursor: 'initial'
- },
- hover:
- {
- fill: '#ddd',
- "fill-opacity": 1,
- stroke: 'none',
- "stroke-width": 0,
- "stroke-opacity": 1,
- cursor: 'initial'
- }
- },
- onRegionTipShow: function (e, el, code) {
- e.preventDefault();
- return false;
- }
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement