Overlaying other objects in Flash full screen video
Is there a way to overlay other objects on top of fullscreen video in Flash Player? i want to put a googlemap over a 'full screen' flash video player, is it possible? ...
Is there a way to overlay other objects on top of fullscreen video in Flash Player? i want to put a googlemap over a 'full screen' flash video player, is it possible? ...
Usually u have to set up a little script + htmlpage on your server to run google maps, but i was wondering - is it possible to use google maps directly? i mean by just calling an url with parameters (gpoint coordinates, zoomfactor ..) and it loads the map fullscreen without having to use my own server? ...
Hello ! I am working with Google Maps right now and I want to be able to disallow user dragging map out of specified boundaries. var strictBounds = new google.maps.LatLngBounds( new google.maps.LatLng(49.00, 14.07), new google.maps.LatLng(54.50, 24.09) ); What should I do ? I tried to use drag event but with no luck.. google...
Hi, So far I use http://maps.google.com/maps/geo?q=downtown&output=csv&key=whateverthekeyis to get the longitude and lattitude of some address. function load() { if (GBrowserIsCompatible()) { map = new GMap2(document.getElementById('"mapHolderID'); map.addControl(new GSmallMapControl()); map....
I'm trying to use the Google Maps API and the div that is going to contain the map works only when not inside another div. I've created a little sample code with two maps, the first works the second doesn't. If I remove the doctype of this piece of code, both work. Any ideas why? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
I have ran into a very strange issue with Google Maps in Chrome 5.0.375.99: if you dynamically create more than one Maps instance, the second and on have a strange bug where it does not display properly, is only shows in a fraction of the map space. Some Example Pages: one default - When you click addOne, the new object has the problem...
Hi, my code is: var ctaLayer = new google.maps.KmlLayer( 'http://.../per1.kml', {suppressInfoWindows: true}); ctaLayer.setMap(map); var info_percurso = new google.maps.InfoWindow({ content: 'hi' }); google.maps.event.addListener(ctaLayer, 'click', function() { info_percurso.open(map,ctaLayer); alert("dd"); }); ...
So this gets auto generated through the controller and I think I'm just overlooking something but the output is just like this formatting is acting weird, sorry google.load("maps", "2.x", {"language" : "en"}); function initialize() { if (GBrowserIsCompatible()) { // Initialize the GMap var map = new google.maps.Ma...
So my code looks like this, multiple markers: var m1 = new google.maps.Marker( new google.maps.LatLng(35.2602340, -93.7939480), {icon:tinyIcon,bouncy:1} ); google.maps.Event.addListener(m1, "click", function() { m1.openInfoWindowHtml( '1<br />test,TX' ); }); map.addOverlay(m1); var m2 = new google.maps.Marker( ...
So I know this is a common question, and yet I feel I have exhausted all the standard items out there. I too have a problem with a jQuery Tab and a Google Map (2) inside a div. I have implemented the position absolute + -10000px option. I have implemented the $().bind('tabshow').... resizeMap(); I have had zero success with this issue...
I'm using Dragzoom with Google Map API to allow user to zoom in and out. I'm having a problem with the position of the DragZoom overlay and the drag box when viewing in IE6. Here is the site. http://6243068.test.prositehosting.co.uk/projectspot/test1.html When you draw a box, it is offset to the left by about half the map width. If ...
Hi, I'm struggling with a problem with some GIS information that I am trying to put into a KML file to be used by google maps and google Earth. I have SQL database containing a number of surveys, which are stored in lines. When all the lines are drawn on the map, they create a grid. What I am trying to do is work out the centre of th...
This problem has really troubled me and yet to have a solution. I have a list of locations with latitude and longitude. And each time i click on the button next, it suppose to auto open the infowindow of the location one by one each click. However, the infowindow and marker always open at the center. May I know how can I make the locat...
Hello, I am currently in the research phase of my project on Android.I am interested in developing indoor custom maps application.There are 2 problems I am currently facing in this 1) I can't use GPS as it won't work in the indoor settings like a building or a mall and 2) I can't use Google Maps API as I need to show my location on a in...
Has anyone got any experience with JWebBrowser rendering google maps. I can show a map and a maker but when I try and load the markes using xml the map is displayed but not markers. The code works fine in Firefox but not IE???? ...
I have one URL "http://mt0.google.com/vt/lyrs=m@129&hl=en&x=11728&y=7595&z=14&s=Galileo" used to fetch Google Tiles from Internet. If I use this Google Tile URL from browser (any), I successfully get the Google Tiles (Map). But the problem is, if I try to access this URL programmaticaly, I get an Error: HTTP 403 Forbi...
Hi guys, I've been playing around with the Google Maps API and so far it's awesome, but I've run into my first snag. I need a way to get the full address for a business name in a city & state. For instance, searching for "The Troubadour, West Hollywood CA" in Google maps (maps.google.com) gives me the full address: 9081 Santa Monica Boul...
Hello, I am New to Google Maps! I have found a code to show Google maps with multiple markers using JQuery & xml. see live Example I have marker.js like this $(document).ready(function() { $("#map").css({ height: 500, width: 800 }); var myLatLng = new google.maps.LatLng(17.74033553, 83.25067267); MYMAP....
Hiya All, We currently use Google Maps to place points of partners we work with on a certain projects, we have a large number of "pins" across the globe. But what we would like to do is completely redesign it from the generic google maps map and pins to maybe something more adventurous or "cooler". We're looking for inspiration for th...
Hello, I am new to Google Maps. I have found this code. Here is DEMO : <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> <script type="text/javascript"> function initialize() { var latlng = new google.maps.LatLng(57.0442, 9.9116); var sett...