Maps embedded into forms

I am working on a project that will put maps into forms.

To do this I need to include a css link and a script link.

Is this going to be possible?

You can add the script using something like:
$.getScript("https://www.gstatic.com/charts/loader.js");
and the CSS like:
$('<link/>', { rel: 'stylesheet', type: 'text/css', href: "pathtocss/CSS.css"}).appendTo('head');

1 Like