-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a285928
commit c16c426
Showing
9 changed files
with
140 additions
and
2 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
gtav-interactive-map/assets/cayoPericoKosatkaApproachVehicle.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[ | ||
{ | ||
"display_name": "North Point Kosatka", | ||
"coords": [83.563413, -94.075928] | ||
}, | ||
{ | ||
"display_name": "Paleto Cove Kosatka", | ||
"coords": [76.25826, -140.075684] | ||
}, | ||
{ | ||
"display_name": "Mount Gordo Kosatka", | ||
"coords": [78.759229, -22.324219] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"singleMarkers": [ | ||
{ | ||
"display_name": "Penris Building", | ||
"coords": [0.35156, -92.955322] | ||
}, | ||
{ | ||
"display_name": "Schlongberg Sachs Center", | ||
"coords": [-2.866235, -101.239014] | ||
}, | ||
{ | ||
"display_name": "707 Vespucci", | ||
"coords": [-4.82826, -101.733398] | ||
} | ||
], | ||
"line": [ | ||
{ | ||
"coords": [ | ||
[-45.470265, -86.009904], | ||
[36.686041, -42.835693] | ||
], | ||
"marker_points": [0, 1], | ||
"names": ["Merryweather HQ", "Palmer-Taylor Power Station"], | ||
"display_name": "Weapon Loadout", | ||
"options": { | ||
"color": "#AF4", | ||
"interactive": false | ||
}, | ||
"tooltip_options": { | ||
"permanent": true, | ||
"direction": "center" | ||
} | ||
} | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
gtav-interactive-map/loadScripts/cayoPericoKosatkaApproachVehicle.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
function loadCayoPericoKosatkaApproachVehicle(r) { | ||
let layers = genericMarkers( | ||
"kosatkaApproachVehicleDiv", | ||
r, | ||
constantData.icons.kosatkaRed, | ||
"lastPickCayoPericoKosatkaApproachVehicle" | ||
); | ||
|
||
displayButtons( | ||
"markers-cayopericoheist-kosatkaapproachvehicle-show-all-btn", | ||
"markers-cayopericoheist-kosatkaapproachvehicle-hide-all-btn", | ||
layers, | ||
"lastPickCayoPericoKosatkaApproachVehicle" | ||
); | ||
} |
19 changes: 19 additions & 0 deletions
19
gtav-interactive-map/loadScripts/cayoPericoWeaponLoadout.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
function loadCayoPericoWeaponLoadout(r) { | ||
let layers = genericLine("weaponLoadoutDiv", r.line); | ||
|
||
layers = genericMarkers( | ||
"weaponLoadoutDiv", | ||
r.singleMarkers, | ||
constantData.icons.weaponLocker, | ||
"lastPickCayoPericoWeaponLoadout", | ||
layers, | ||
1 | ||
); | ||
|
||
displayButtons( | ||
"markers-cayopericoheist-weaponloadout-show-all-btn", | ||
"markers-cayopericoheist-weaponloadout-hide-all-btn", | ||
layers, | ||
"lastPickCayoPericoWeaponLoadout" | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters