CalypsoMap.com looking for a new home

Larry

Old Alpha
Joined
Feb 6, 2010
Posts
708
Location
England
Society
Freelancer
Avatar Name
Enviro Larry Lagoono
I hope I put this in the right forum section. lol.

I've largely moved away from EU based projects, so I'm looking to hand CalypsoMap.com to someone who would like to carry on this iconic little side project.

It does get regular traffic (few hundred views a week last I checked). Nothing major, but it is a tool that is actively used.

The site is built using HTML, CSS and JavaScript - so you will need a handle on these in order to build on it.

This is not a sale, I'm just looking to hand over to the right person.

PM me if you're interested.

Cheers!
 
7 likes and at least one PM sent. Holidays? ,-)
 
i am not web expert enough.
it is an amazing site, i do hope it goes on, adds more locations and maybe add other planets too
(and a WP copy to clipboard feature)
thanks for runing it so far
 
i am not web expert enough.
it is an amazing site, i do hope it goes on, adds more locations and maybe add other planets too
(and a WP copy to clipboard feature)
thanks for runing it so far

Thank you for the compliment. :)

If I don't find a good fit to take over the site, I'll most likely just keep it going while making minor updates from time to time.

I won't be making a map for other planets, but I did make one for space (https://space.calypsomap.com). Also the current site already has a WP copy to clipboard feature for TP's. I've struggled with adding that feature for any location, but you never know, maybe I end up tinkering with it again on a slow Sunday. lol.

Cheers!
 
I like the idea of WP copy to clipboard feature! I might have to see if I can put something like that into my own project one day. Good call.
 
The waypoint copy to clipboard feature is nicely done on this website:
https://cyrenedream.org/mecha-lupine

you could reach out to whoever does that site...
Thanks! I've nicked the formatting from that - I'm not playing with https yet so couldn't get the method from w3cschools to work (allegedly it doesn't with http) but have found a workaround.

For example:

Code:
function copyToClipboard(text)
{
  var copyText = document.createElement("textarea");
  copyText.value = text;
  copyText.style.position = "fixed";
  document.body.appendChild(copyText);
  copyText.focus();
  copyText.select();
  document.execCommand("copy");
  document.body.removeChild(copyText);
  console.log("Text copied successfully to clipboard!");
}

copyToClipboard("/wp [Planet Cyrene, " + (mouseX - mapView_X) + ", " + (mouseY - mapView_Y) + ", 214, Mech Lupine Gen 2]");
 
Just dropping this here, but will be looking for a better spot:

CalypsoMap has been updated:
Added Lahar Swamp
Added Medusa Swamp
Added Spina Infested Crash site east of East Scylla Mountains
Added Spina Infested Crash site north of Ashi
Added Tethys Creek
Added No Vehicle Zone east of Fort Troy
Added multiple creatures to the map including new Spina Bloodmother, Drone, Workers

We will be adding a form the calypsorescueteam.com where adjustments can be proposed. In the meantime, feel free to post them in this topic. We will keep an eye out for them.
 
Awesome!! Great to see CRT getting right on it. Absolutely the right gang to take over.
 
Back
Top