sr-npm 1.7.223 → 1.7.225
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/pages/careersPage.js +5 -1
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -144,7 +144,7 @@ async function handlePageParam(_$w) {
|
|
|
144
144
|
async function bind(_$w) {
|
|
145
145
|
await _$w('#jobsDataset').onReady(async () => {
|
|
146
146
|
await updateCount(_$w);
|
|
147
|
-
|
|
147
|
+
// await updateMapMarkers(_$w);
|
|
148
148
|
|
|
149
149
|
});
|
|
150
150
|
|
|
@@ -362,6 +362,10 @@ async function updateMapMarkers(_$w){
|
|
|
362
362
|
console.log("type of markers: ", typeof markers);
|
|
363
363
|
//@ts-ignore
|
|
364
364
|
_$w('#googleMaps').setMarkers(markers);
|
|
365
|
+
let getmarkers=await _$w('#googleMaps').getMarkers();
|
|
366
|
+
console.log("getmarkers: ", getmarkers);
|
|
367
|
+
let getmarkers2=await _$w('#googleMaps').markers;
|
|
368
|
+
console.log("getmarkers2: ", getmarkers2);
|
|
365
369
|
//}
|
|
366
370
|
// else{
|
|
367
371
|
// console.log("no positions found");
|