Skip to content
Advertisement

Google Maps API using Node.js and Express

i have an idea for a website that takes in ufo information from a certain API. i have been able to display information such as the location of the encounter. the API also returns coordinates of the encounters and i want to display a map with a marker of said location. the only way I’m able to obtain the specific data i want is by using the “<%=%>”. the information is random each time so i hope there is a method similar that that above that will help me access the coordinates of each random case

tracker.ejs

JavaScript

index.js

JavaScript

Advertisement

Answer

You were already on the right track. You can output EJS variables inside of an inline JS script in a similar way as you were doing with the HTML.

JavaScript

But, the most elegant solution would be to create an endpoint that only returns the randomCase object which you request from the client through the Fetch API.


Sidenote: nesting heading elements (h1h6) inside of paragraph elements makes invalid HTML. Look at the list of allowed children of the paragraph element.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement