Re: [Google Maps API v3] Links being rendered in arbitrary directions in StreetView app

2012-08-14 Thread Marc Ridey
My bad, originHeading doesn't exist anymore and has been replace with centerHeading. CenterHeading is the heading of the view at the center of the custom panorama you created. So if the middle of the panorama image is the North view with West to the left and East to the right, set centerHeading to

Re: [Google Maps API v3] Links being rendered in arbitrary directions in StreetView app

2012-08-13 Thread Marc Ridey
You probably need to adjust the originHeading on your custom panoramas. check http://blog.mridey.com/2010/05/how-to-create-and-display-custom.html On Tue, Aug 14, 2012 at 6:36 AM, Jason wrote: > How does StreetView determine which direction is north? > > I have a series of panoramas with links b

Re: [Google Maps API v3] Displaying different streetview latlngs

2012-02-05 Thread Marc Ridey
You want something like this: function initialize() { // Create the map // No need to specify zoom and center as we fit the map further down. var map = new google.maps.Map(document.getElementById("map_canvas"), { mapTypeId: google.maps.MapTypeId.ROADMAP, streetViewContr

Re: [Google Maps API v3] Displaying different streetview latlngs

2012-02-05 Thread Marc Ridey
Does this helps: http://blog.mridey.com/2010/11/maps-api-javascript-v3-multiple-markers.html http://blog.mridey.com/2010/11/maps-api-javascript-v3-multiple-markers_08.html On Mon, Feb 6, 2012 at 9:58 AM, jmfolds wrote: > Hello, > > I have a list of latlngs that I want to display streetview for

Re: [Google Maps API v3] Problem in Chrome with GoogleMap overlayed to StreetView (don't get properly mouse click)

2011-10-28 Thread Marc Ridey
My test page works fine on Chrome Mac so I'm guessing you're using Chrome Windows. I'll have to dig out a Windows machine and test. On Fri, Oct 28, 2011 at 10:57 PM, Jasper Goes wrote: > After some minimal research, the issue seems to be relating to > anti-aliasing or smoothing. > > In the previ

Re: [Google Maps API v3] Problem in Chrome with GoogleMap overlayed to StreetView (don't get properly mouse click)

2011-10-28 Thread Marc Ridey
Try this code: http://blog.mridey.com/2010/11/how-to-display-map-inside-streetview.html On Fri, Oct 28, 2011 at 6:17 PM, tswadmin < administra...@turismoserviziweb.com> wrote: > I noticed that mouse click and drag do not work properly in Chrome when the > map div is over a streetview div (I neet

Re: [Google Maps API v3] getPanoramaByLocation

2011-10-01 Thread Marc Ridey
If the distance is greater than 50m, the service returns a panorama within the distance rather than the nearest. On Sun, Oct 2, 2011 at 12:35 PM, dbrb2 wrote: > Hi - I want to use a latlng to view the nearest streetview to a point. > > The docs say that, up to 50m getPanoramaByLocation will retu

Re: [Google Maps API v3] markers on streetview after pegman drop

2011-10-01 Thread Marc Ridey
The map already has a panorama by default. If you create your own panorama to replace it, you need to link the map and the panorama using map.setStreetview(panorama). Without a test link, it's hard to guess but I would think that's the issue. Marc On Sun, Oct 2, 2011 at 4:40 AM, dbrb2 wrote: >

Re: [Google Maps API v3] Re: Street View in separate window

2011-08-28 Thread Marc Ridey
Or in an InfoWindow: http://blog.mridey.com/2010/11/maps-api-javascript-v3-multiple-markers.html On Sun, Aug 28, 2011 at 10:51 AM, geocode...@gmail.com wrote: > On Aug 27, 11:53 am, maplab wrote: > > Is there an EXAMPLE of opening Street View in a separate window. I > > would like to have the S

Re: [Google Maps API v3] Listing for streetview and modifying streetview controls

2011-08-19 Thread Marc Ridey
See http://code.google.com/apis/maps/documentation/javascript/reference.html#StreetViewAddressControlOptions try streetView.set('navigationControl', false); streetView.setOptions({ 'addressControlOptions': { 'position': google.maps.ControlPosition.BOTTOM_RIGHT } }); -- You rece

Re: [Google Maps API v3] Custom Panorama AND normal map in sync.

2011-07-07 Thread Marc Ridey
Hi, If you want the map and the panorama as separate panels, just create a StreetViewPanorama, not a second map and link it to the map. Change your startApplication with this one: function startApplication() { // Set up the map and enable the Street View control. var mapOptions = { center

Re: [Google Maps API v3] Custom Panorama AND normal map in sync.

2011-07-06 Thread Marc Ridey
You'll need to provide more information, including maybe a test link of what you are trying to do and where it fails. On Wed, Jul 6, 2011 at 8:36 PM, Webewitch wrote: > I've tried and failed to hash a map which will be like the simple > streetview example: > > http://code.google.com/apis/maps/do

Re: [Google Maps API v3] Re: Help please, rightclick triggering (custom) StreetView

2011-07-01 Thread Marc Ridey
.com/apis/maps/documentation/javascript/reference.html#StreetViewPanorama > methods setVisible. Or are there subtleties here I haven't yet > learned? > > Joe > > On Jul 1, 2:42 pm, Marc Ridey wrote: > > try: > > > > panorama.set('visible', true); &

Re: [Google Maps API v3] Help please, rightclick triggering (custom) StreetView

2011-07-01 Thread Marc Ridey
try: panorama.set('visible', true); Marc On Fri, Jul 1, 2011 at 1:34 PM, Joe Gawron wrote: > Hi, all > > I've a puzzle: I have the following event listener on the map > object: > > var entryPanoId = null ; > > google.maps.event.addListener(map,'rightclick', function (e) { >var c

Re: [Google Maps API v3] Street View custom supertiles problem

2011-06-27 Thread Marc Ridey
This all looks normal. This test page ( http://code.google.com/apis/maps/documentation/javascript/examples/streetview-map.html) displays the same behavior on my Mac Chrome/Safari/Firefox which all use the HTML mode. I suspect the use of lower resolution tiles during load and zoom is specific to the

Re: [Google Maps API v3] Street View custom supertiles problem

2011-06-26 Thread Marc Ridey
Hi Mike, Can you supply a test link? Regarding the tiles, have you created all the levels for your custom tiles as explained in http://code.google.com/apis/maps/documentation/javascript/services.html#CustomStreetView? The tile at level 0 should be a single image providing the entire panorama (wha

Re: [Google Maps API v3] streetView panoOptions: addressControlOptions: style not being honored?

2011-05-22 Thread Marc Ridey
How to show/hide the address control panorama.set('addressControl', true/false); or panorama.setOptions({ addressControl: true/false }); See http://blog.mridey.com/2010/05/controls-in-maps-javascript-api-v3.html Marc -- You received this message because you are subscribed t

Re: [Google Maps API v3] is StreetViewPanorama available here ?

2011-05-16 Thread Marc Ridey
See http://blog.mridey.com/2010/11/using-streetviewservice-in-maps-api.html On Tue, May 17, 2011 at 4:28 PM, pec76 wrote: > Hello, > > I am currently laoding a streeview panorama with the following code: > > if (document.getElementById('gf_streetView')){ >var panorama = new > google.maps

Re: [Google Maps API v3] Streeview inside of the infowindow

2011-05-09 Thread Marc Ridey
Would this help: http://blog.mridey.com/2010/11/maps-api-javascript-v3-multiple-markers.html On Tue, May 10, 2011 at 1:56 AM, nivong wrote: > Hi all, > > I have problems using the streetview function of Google Maps API v3 > What I want is: > When I click on a marker it opens a infowindow wit

Re: [Google Maps API v3] Activate custom panorama via a marker

2011-03-16 Thread Marc Ridey
Try: google.maps.event.addListener(placeMarker, 'click', function() { panorama.setPano('reception'); }); -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to google-maps-js-api-v3@googlegroups.

Re: [Google Maps API v3] tracking many StreetViewService queries

2011-03-09 Thread Marc Ridey
Hi brick, Closure should solve this. Can you supply a test page with what you;re trying to do. It will help in providing an answer to your question. Thanks On Wed, Mar 9, 2011 at 4:40 AM, brick wrote: > i understand how closures add extra variables to the scope of a > method, and that this ena

Re: [Google Maps API v3] Re: infoBoxes in StreetView? Or another way around this problem???

2011-02-20 Thread Marc Ridey
I can confirm that once you create your own panorama to display side by side with the map, the markers in the map are no longer displayed in StreetView and the API doesn't let you re-enable this. On Mon, Feb 21, 2011 at 4:49 AM, Gary Little wrote: > Sascha, > > I think you will have to do what T

Re: [Google Maps API v3] Re: infoBoxes in StreetView? Or another way around this problem???

2011-02-16 Thread Marc Ridey
of a Google Map (say by dropping the peg man on a street of > interest), some initialization code is called to iterate through all > the markers shown on the map and calls setMap on them to make them > appear in Street View as well? > > Gary > > On Feb 15, 2:32 pm, M

Re: [Google Maps API v3] Re: infoBoxes in StreetView? Or another way around this problem???

2011-02-15 Thread Marc Ridey
The Map and StreetViewPanorama controls used the same logic to display markers, infowindows and overlays. I.e. you can create an overlay like Label (see http://blog.mridey.com/2009/09/label-overlay-example-for-google-maps.html) and then load it into the StreetViewPanorama using: var label = new La

Re: [Google Maps API v3] Using Google StreetView Object

2011-02-02 Thread Marc Ridey
It depends on the browser. Some browser will display using HTML4 without projection, some will use HTML5 and the most modern browsers will use WebGL with full perspective correction projection. On Wed, Feb 2, 2011 at 1:34 PM, sajornad wrote: > Thanks Marc, sorry for my mistake on V2 API. > > I w

Re: [Google Maps API v3] Using Google StreetView Object

2011-02-02 Thread Marc Ridey
GStreetViewPanorama is part of the v2 API. The equivalent v3 is StreetViewPanorama and it supports custom panoramas. Start here: http://code.google.com/apis/maps/documentation/javascript/services.html#Custo

Re: [Google Maps API v3] Re: computing pov for streetview from a geocoded address?

2011-02-02 Thread Marc Ridey
Cool!!! new stuff I didn't know about. Thanks. On Wed, Feb 2, 2011 at 12:13 AM, JKurtock wrote: > Or you can let Mr. Google compute the heading from the pair of > latlngs. > http://code.google.com/apis/maps/documentation/javascript/geometry.html > > On Feb 1, 7:00 pm, Robert Poor wrote: > > Mar

Re: [Google Maps API v3] computing pov for streetview from a geocoded address?

2011-02-01 Thread Marc Ridey
, Robert Poor wrote: > @marc: > > On Tue, Feb 1, 2011 at 12:14, Marc Ridey wrote: > > Check this on how to determine if a StreetView panorama exists for a given >> LatLng. >> http://blog.mridey.com/2010/11/using-streetviewservice-in-maps-api.html >&g

Re: [Google Maps API v3] computing pov for streetview from a geocoded address?

2011-02-01 Thread Marc Ridey
Check this on how to determine if a StreetView panorama exists for a given LatLng. http://blog.mridey.com/2010/11/using-streetviewservice-in-maps-api.html On Tue, Feb 1, 2011 at 2:27 PM, fearless_fool wrote: > So I've got a geocoded house address, returned by geocoder.geocode(...). > I'd like

Re: [Google Maps API v3] newbie at a loss

2011-01-19 Thread Marc Ridey
I would strongly suggest you move to v3. Have a look at these examples: http://blog.mridey.com/2010/11/maps-api-javascript-v3-multiple-markers.html http://blog.mridey.com/2010/11/maps-api-javascript-v3-multiple-markers_08.html Marc On Thu, Jan 20, 2011 at 12:41 AM, Eric Naitove wrote: > first a

Re: [Google Maps API v3] Re: Color markers (other than red)

2010-12-26 Thread Marc Ridey
You can also use the Google Chart API to create any color marker and the corresponding shadow. See http://code.google.com/apis/chart/docs/gallery/dynamic_icons.html On Sun, Dec 26, 2010 at 4:47 PM, geocode...@gmail.com wrote: > On Dec 25, 8:38 pm, Mark Adler wrote: >> Thanks! That's a start.

Re: [Google Maps API v3] Affihage streetview

2010-12-22 Thread Marc Ridey
Bonjour, Peux-tu nous donner l'adresse Internet ou StreetView ne fonctionne pas? Si c'est une page avec Maps v2 (et pas Maps v3), il faut que tu installes Adobe Flash http://get.adobe.com/fr/flashplayer/?promoid=DAGAV Marc On Thu, Dec 23, 2010 at 5:56 AM, corrida18000 wrote: > Bonjour > Depuis

Re: [Google Maps API v3] Re: Migrate street view parameters from v2 to v3

2010-12-12 Thread Marc Ridey
values to go from v2 to v3 maps. > > thanks > > On 8 déc, 11:50, Marc Ridey wrote: > > Could you provide more information: > > - The type of data you store > > - What you're trying to do > > > > Even better would be a link to a v2 sample page

Re: [Google Maps API v3] Re: Migrate street view parameters from v2 to v3

2010-12-08 Thread Marc Ridey
Could you provide more information: - The type of data you store - What you're trying to do Even better would be a link to a v2 sample page and how far you've gone to a v3 version. On Wed, Dec 8, 2010 at 9:20 PM, jarreweb wrote: > any clue ? > > -- > You received this message because you are su

Re: [Google Maps API v3] Re: Unable to create InfoWindow using Javascript for loop

2010-12-07 Thread Marc Ridey
or these: Multiple Markers with multiple infowindows and StreetView http://blog.mridey.com/2010/11/maps-api-javascript-v3-multiple-markers_08.html Multiple Markers, InfoWindow and StreetView http://blog.mridey.com/20

Re: [Google Maps API v3] Info Markers

2010-12-07 Thread Marc Ridey
Does these help: Multiple Markers with multiple infowindows and StreetView http://blog.mridey.com/2010/11/maps-api-javascript-v3-multiple-markers_08.html Multiple Markers, InfoWindow and StreetView http://blog.mridey

Re: [Google Maps API v3] Re: Google Maps Api in Windows Application

2010-12-01 Thread Marc Ridey
You may also want to have a look at the Flash API. See http://code.google.com/apis/maps/articles/flashmapinwpf.html On Wed, Dec 1, 2010 at 10:39 PM, Rossko wrote: > > I am newbie to google Maps.Please guide how to use google maps in > > windows application. > > The maps API is javascript, you ne

Re: [Google Maps API v3] Re: Split view in Street View

2010-11-30 Thread Marc Ridey
with default small size in right bottom corner. > > So my question is how to achieve these two arrows in 2D views inside > Street view? > > Thanks, > Sanket > > On Nov 30, 4:30 pm, Marc Ridey wrote: > > Is this what you're after? > http://blog.mridey.com/2010/11/

Re: [Google Maps API v3] Split view in Street View

2010-11-30 Thread Marc Ridey
Is this what you're after? http://blog.mridey.com/2010/11/how-to-display-map-inside-streetview.html Marc On Tue, Nov 30, 2010 at 8:38 PM, sanket wrote: > Hi, > > I have a question for Google Maps JS API Version 3.0. > >

[Google Maps API v3] Re: How to display a StreetView panorama inside an InfoWindow

2010-11-08 Thread Marc Ridey
Sorry the v2 version used Flash that allowed the browser to extend beyond the bounds of its window and take over the desktop. With the new v3 version purely HTML based, the content is bound by what the browser can do. You can 'simulate' full screen by having a DIV on your site , inserted directly

[Google Maps API v3] Re: How to display a StreetView panorama inside an InfoWindow

2010-11-08 Thread Marc Ridey
When you go to the main Maps API Javascript site, http://code.google.com/intl/en/apis/maps/documentation/javascript/, there is a link in the top right to access the forum http://code.google.com/intl/en/apis/maps/documentation/javascript/forum.html. Marc -- You received this message because you

[Google Maps API v3] Re: How to display a StreetView panorama inside an InfoWindow

2010-11-08 Thread Marc Ridey
Sorry, they are links in the forum. Not sure what happened with groups. Here's the links: http://blog.mridey.com/2010/11/maps-api-javascript-v3-multiple-markers.html http://blog.mridey.com/2010/11/maps-api-javascript-v3-multiple-markers_08.html http://blog.mridey.com/2010/11/using-streetviewser

[Google Maps API v3] Re: How to display a StreetView panorama inside an InfoWindow

2010-11-08 Thread Marc Ridey
And have a look at Multiple Markers, InfoWindow and StreetView Multiple Markers with multiple infowindows and StreetView Using StreetViewService in Maps API Javascript v3 -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To pos

Re: [Google Maps API v3] Re: Position of the StreetViewControl

2010-11-05 Thread Marc Ridey
not panorama.setStreetView(addressControlOptions: { position: google.maps.ControlPosition.BOTTOM }); it should be panorama.setOptions(addressControlOptions: { position: google.maps.ControlPosition.BOTTOM }); or panorama.setValues(addressControlOptions: { position: google.maps.ControlPosition.BOT

[Google Maps API v3] Re: Normal map to street view

2010-11-05 Thread Marc Ridey
To switch from map to panorama, try: var panorama = map.getStreetView(); panorama.setPosition(latlng); panorama.setVisible(true); To switch back to the map: var panorama = map.getStreetView(); panorama.setVisible(false); -- You received this message because you are subscribed to the Google

[Google Maps API v3] How to display a map inside StreetView

2010-11-05 Thread Marc Ridey
It's fairly easy to display a small map in the corner of a StreetView panorama. You just need to add a small map on top of the StreetView panorama and bind it. See http://blog.mridey.com/2010/11/how-to-display-map-inside-streetview.html -- You received this message because you are subscribed to

[Google Maps API v3] How to display a StreetView panorama inside an InfoWindow

2010-11-05 Thread Marc Ridey
I've seen a number of questions relating to displaying StreetView in an infowindow. Here's a small demo. Hope it helps. http://blog.mridey.com/2010/11/how-to-embed-streetview-in-infowindow.html -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript

Re: [Google Maps API v3] Using the pegman on a custom map (streetview)

2010-11-01 Thread Marc Ridey
Two issues: 1. The StreetView panorama: you can supply a panorama provider and set a custom pano ID. When your provider is called, supply the tile definitions and the links to further panoramas. You can that way run a complete world of panoramas without ever displaying Google's StreetView tiles.

Re: [Google Maps API v3] V3 Imagery rendering differences between browsers.

2010-10-20 Thread Marc Ridey
The Maps API v3 implementation of StreetView uses different technologies depending on the capabilities of the browser. From HTML4 scaled images on basic browsers to WebGL 3D Canvas on modern browsers. While WebGL allows StreetView to do perspective correction to provide a much better looking view,

Re: [Google Maps API v3] Removing the pegman from map

2010-10-08 Thread Marc Ridey
You should be able to set streetViewControl:false in http://code.google.com/apis/maps/documentation/javascript/reference.html#MapOptions On Fri, Oct 8, 2010 at 7:01 PM, Peter wrote: > Hello, > > It looks like a change to the api code today has started showing the > streetview pegman on my map.

Re: [Google Maps API v3] get latlng position of the wall/object in front

2010-10-06 Thread Marc Ridey
Correct, the information you would need to do this is not available on the API. On Wed, Oct 6, 2010 at 5:02 PM, roberto.cr wrote: > Hello > I'm trying to overlay an image exactly over a wall or object, and for > that I have created a marker with the image and set it visible from > streeview > >

Re: [Google Maps API v3] How do I change the roadcolor in streetview?

2010-09-04 Thread Marc Ridey
The link color is an individual property of each link. If you want to change the link color of the StretView links, you need to iterate through the links and change the roadColor and roadOpacity values for each link. use the links_changed event on the panorama to know when the links have been set b

Re: [Google Maps API v3] Custom Text Overlay on top of StreetView Panorama for Maps API v3

2010-09-01 Thread Marc Ridey
Look at this example on how to add a custom control to a map: http://code.google.com/apis/maps/documentation/javascript/controls.html#CustomControls The same can be done to a StreetView panorama using panorama.controls as per http://code.google.com/apis/maps/documentation/javascript/reference.html

Re: [Google Maps API v3] InfoWindows in Maps and Streetview

2010-07-26 Thread Marc Ridey
Try something like: google.maps.event.addListener(marker, 'click', function() { if (panorama.getVisible()) {   infowindow.open(panorama, marker); } else { infowindow.open(map, marker); } }); -- You received this message because you are subscribed to the Google Groups "Google Maps Ja

Re: [Google Maps API v3] Streetview

2010-07-25 Thread Marc Ridey
No, this feature is not available. Add it as a feature request in http://code.google.com/p/gmaps-api-issues/issues/list?can=2&q=apitype:Javascript3&colspec=ID+Type+Status+Introduced+Fixed+Summary+Internal+Stars&cells=tiles

Re: [Google Maps API v3] Streets View Link within an InfoWindow

2010-07-15 Thread Marc Ridey
Could you clarify what you would like to display in the infowindow? - If you want a link () that loads a page with StreetView, you will need to create the page, process the parameters in the query string and display StreetView using the API. - If you meant you wanted to display a StreetView panor

Re: [Google Maps API v3] subclass google.map.Marker?

2010-07-13 Thread Marc Ridey
If you subclass the marker, you need to continue to use the Marker interface. you cannot access position or map directly as properties. For example: function MyMarker(opts){ this.setPosition(opts.position); this.setMap(opts.map); } MyMarker.prototype = new google.maps.Marker(); or even: f

Re: [Google Maps API v3] Re: Polylines in Opera

2010-07-13 Thread Marc Ridey
> always seemed odd since they are both WebKit browsers. > See http://code.google.com/events/io/2010/sessions/maps-api-v3-api.html > at about 20 minutes in. > > Marc Ridey mentioned at I/O that there was a significant bug in the > Android SVG implementation (prior to 2.2). > >

Re: [Google Maps API v3] Show marker on link click

2010-07-08 Thread Marc Ridey
You can change the visibility of a marker by calling: marker.setVisible(true); marker.setVisible(false); On Fri, Jul 9, 2010 at 7:51 AM, Chetan wrote: > Hi, > > I am creating markers with "visible: true" option. I want to show a > particular marker on link click. How I can do this. Please guide

Re: [Google Maps API v3] Various questions.

2010-07-07 Thread Marc Ridey
Calculating the distance between two LatLng is a common math formula. Try this: http://lmgtfy.com/?q=Distance+between+two+latlng&l=1 On Thu, Jul 8, 2010 at 9:54 AM, LUIS TARZIA wrote: > Hello,i resume in one post my questions not resolved yet. > 1) How i know the distance in meters o km from the

Re: [Google Maps API v3] How to go from StreetView to normal map?

2010-07-03 Thread Marc Ridey
You should be able to click the close button in the top right of the StreetView view to get back to the map. Programmability, you can do map.getStreetView().setVisible(false); On Sun, Jul 4, 2010 at 4:22 AM, tinem wrote: > I have made this > http://www.tinemuller.dk/googlemaps_v3/directions_rend

Re: [Google Maps API v3] Positioning Custom Control

2010-06-20 Thread Marc Ridey
dding something like style.width = '200px'. Marc On Mon, Jun 21, 2010 at 2:30 PM, thom wrote: > On Mon, Jun 21, 2010 at 10:46 AM, Marc Ridey wrote: > >> Add style.float = 'left' to controlUI, controlyk, controlsl, controlsmg. >> This will allow your four DI

Re: [Google Maps API v3] Positioning Custom Control

2010-06-20 Thread Marc Ridey
Add style.float = 'left' to controlUI, controlyk, controlsl, controlsmg. This will allow your four DIVs to be side by side instead of below each other. On Mon, Jun 21, 2010 at 1:37 PM, thom wrote: > Hello,, > I wanna ask again. I have a map, like shown here, > http://www.mastanto.com/tes/. My ma

Re: [Google Maps API v3] Request for flash street view...

2010-06-20 Thread Marc Ridey
Also, rather than asking for "Flash StreetView", could you identify the features for the Flash version that you are missing most in the non-Flash version. Things like ClickToGo, ClickToZoom, Panoramio... Remember for example that Flash will not work on mobile devices. On Mon, Jun 21, 2010 at 4:58

Re: [Google Maps API v3] Re: Why do Polygons have no method or properties for title?

2010-06-18 Thread Marc Ridey
Have a look at my Label class that lets you place a label at a given LatLng: http://blog.mridey.com/2009/09/label-overlay-example-for-google-maps.html On Fri, Jun 18, 2010 at 4:33 PM, CarlEd wrote: > Thanks Rossko. Was m

Re: [Google Maps API v3] Re: Getting location of streetview panorama in API v3

2010-06-17 Thread Marc Ridey
got the street view showing correctly. But i would like to know > how to enable the different cursor and that box thing to show the user > if he's able to zoom or move in a particular direction/position. > > I hope i explained myself well, thanks :) > > On May 27, 9:14 am,

Re: [Google Maps API v3] StreetView Markers not being removed?

2010-06-17 Thread Marc Ridey
Note: If you want two markers to keep the same LatLng position, bind the position property of one marker to the other such as: marker1.bindTo('position', marker2); As you drag either marker1 or marker2, the other marker will move too, even if one is in StreetView and the other in the Map. On Tue

Re: [Google Maps API v3] Unsubscribe please

2010-06-11 Thread Marc Ridey
To unsubscribe from this group, send email to google-maps-js-api-v3+unsubscr...@googlegroups.com . On Sat, Jun 12, 2010 at 8:33 AM, wrote: > Is it possible to unsubscribe me? Thanks. > > Verzonden via BlackBerry Bold 9000 > > -- >

Re: [Google Maps API v3] How does one add a Marker to both the regular map and the custom panorama?

2010-06-11 Thread Marc Ridey
You currently need to create two markers. On Sat, Jun 12, 2010 at 5:55 AM, Nathan Raley wrote: > I have a custom panorama and I'd like to add my markers to both the map and > the pano, the pano is in a div on the bottom right of the map so they are > both viewable at the same time, however; once

Re: [Google Maps API v3] Help! $25.00 for the first person to fix it. Safari issues with video in InfoWindow

2010-06-11 Thread Marc Ridey
When you drag the map around as the infowindow is opened, you'kk see the video re-appearing when the infowindow position and video position match. It's a known bug of all webkit browsers when using embed objects (such as flash or video) inside DOM elements where a CSS transform is applied. The only

Re: [Google Maps API v3] StreetView in v3

2010-06-11 Thread Marc Ridey
I don't see where you are setting the map center. I'm guessing tempPosition is null when it's passed to StreetViewPanorama. Can you explain what behavior you are trying to achieve. Thanks On Sat, Jun 12, 2010 at 12:37 AM, Nathan Raley wrote: > I am trying to add a street view in my program as I

[Google Maps API v3] Re: Detect if streetvew is available for a point / getNearestPanoramaLatLng method

2010-06-11 Thread Marc Ridey
Note: StreetViewService.getNearestPanorama was released during Google IO. It has now been renamed StreetViewClient.getPanoramaByLocation to be more consistent with its behavior and match getPanoramaById. http://code.google.com/apis/maps/documentation/javascript/reference.html#StreetViewService --

[Google Maps API v3] Re: Streetview - pov automatically pointing at marker

2010-06-11 Thread Marc Ridey
Note: StreetViewService.getNearestPanorama was released during Google IO. It has now been renamed StreetViewClient.getPanoramaByLocation to be more consistent with its behavior and match getPanoramaById. http://code.google.com/apis/maps/documentation/javascript/reference.html#StreetViewService --

[Google Maps API v3] Re: Street View de V2 -> V3

2010-06-11 Thread Marc Ridey
Note: StreetViewService.getNearestPanorama was released during Google IO. It has now be renamed StreetViewClient.getPanoramaByLocation to be more consistent with its behavior and match getPanoramaById. -- You received this message because you are subscribed to the Google Groups "Google Maps Java

Re: [Google Maps API v3] Re: remove marker from google maps

2010-06-09 Thread Marc Ridey
#x27;m > looking for: > > http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/d87b18de3a096b8d > > Is there an event for "pegman dropped" which I can use to hide the > markers? > > Thanks, > Gavin > > On Jun 8, 10:57 pm, Marc Ridey w

Re: [Google Maps API v3] Problem with an infowindow when using a KmlLayer

2010-06-08 Thread Marc Ridey
You can also reuse the infowindow: var infowindow = new google.map.InfoWindow(); var georssLayer = new google.maps.KmlLayer( 'http://www.juan-anzaldo.com/2010/geolocalizacion/kml/CasillasGoogle.kml', { suppressInfoWindows: true, preserveViewport: true, map: map } ); google.maps.

Re: [Google Maps API v3] Problem with an infowindow when using a KmlLayer

2010-06-08 Thread Marc Ridey
InfoWindow.open expects an MVCObject with a position as the second argument of the open call(). Instead call: infowindow = new google.maps.InfoWindow({content:myHtml}); infowindow.setPosition(posX); infowindow.open(map); On Wed, Jun 9, 2010 at 10:26 AM, janzaldo wrote: > Hi!, > I insert a kmlLa

Re: [Google Maps API v3] Remove Label?

2010-06-08 Thread Marc Ridey
Create your own panorama will stop having markers shared between map and panorama. You can just call: map.getStreetView().setOptions({addressControl:false}); Have a look at this blog for the other options to control the position and style of controls: http://blog.mridey.com/2010/05/controls-in-ma

Re: [Google Maps API v3] Re: remove marker from google maps

2010-06-08 Thread Marc Ridey
d creating my own maptypecontrol and pegman > functionality just to hide the markers for a streetview. > > Failing that - are there any events associated with the standard > streetViewControl that I can use? > > Thanks, > Gavin > > > On May 26, 2:28 am, Marc Ridey w

Re: [Google Maps API v3] Re: Icons and Shadows

2010-06-07 Thread Marc Ridey
Try something like this. But place this code inside the load() to make sure that the google namespace is loaded when this code is executed. var iconSize = new google.maps.Size(32, 32); var iconAnchor = new google.maps.Point(16, 32); var shadowSize = new google.maps.Size(37, 34); var shadowAnchor

Re: [Google Maps API v3] Using LabeledMarker class

2010-06-05 Thread Marc Ridey
Also have a look at http://blog.mridey.com/2009/09/label-overlay-example-for-google-maps.html On Thu, Jun 3, 2010 at 7:13 PM, Kurteknikk wrote: > Hi, > > First of all i've searched a lot for the labeledMarker class written > by Mike Purvis back in 2007. But i didn't find any new version for V3,

Re: [Google Maps API v3] Icons and Shadows

2010-06-05 Thread Marc Ridey
use MarkerImage to specify the anchor point of your icons and your shadows. If you only specify a URL, the bottom middle pixel of each image is assumed to be the anchor point. On Sat, Jun 5, 2010 at 7:55 AM, Eddie LaRue wrote: > I am using the following code for my icons and shadows, but the > s

Re: [Google Maps API v3] Marker labels

2010-06-05 Thread Marc Ridey
Look at this article: http://blog.mridey.com/2009/09/label-overlay-example-for-google-maps.html -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to google-maps-js-api...@googlegroups.com. To unsu

Re: [Google Maps API v3] Streetview open event?

2010-06-02 Thread Marc Ridey
Monitor visible_changed on the panorama to know if the map has changed from map mode to StreetView mode. Monitor pano_changed or position_changed to check if the display in the panorama has changed. On Thu, Jun 3, 2010 at 5:30 AM, Gabriel Svennerberg wrote: > Is there any event that triggeres wh

[Google Maps API v3] Re: Street View de V2 -> V3

2010-06-02 Thread Marc Ridey
quand ? > Merci > > On May 29, 2:47 am, Marc Ridey wrote: > > > > > Ha, je comprends. Nous n'avons pas encore publier l'access a > > StreetViewClient. > > J'ajoute une entree > > ahttp://code.google.com/p/gmaps-api-issues/issues/list?can

[Google Maps API v3] Re: Detect if streetvew is available for a point / getNearestPanoramaLatLng method

2010-06-02 Thread Marc Ridey
The StreetViewService has been released. Try this: var streetViewLocation = new google.maps.LatLng(-33.867386, 151.195767); var nearestLatLng = null; var nearestPano = null; var client = new google.maps.StreetViewService(); client.getNearestPanorama(streetViewLocation, 50, function(result, status

[Google Maps API v3] Re: Streetview - pov automatically pointing at marker

2010-06-02 Thread Marc Ridey
The new StreetViewService will help you do this: var streetViewLocation = new google.maps.LatLng(-33.867386, 151.195767); var nearestLatLng = null; var nearestPano = null; var client = new google.maps.StreetViewService(); client.getNearestPanorama(streetViewLocation, 50, function(result, status) {

Re: [Google Maps API v3] Re: I want to hide floatShadow Pane & overlayShadow Pane

2010-05-31 Thread Marc Ridey
no way to exit > it. Any ideas? > The full source is at http://bbarker.co.uk/cycleHire/index.txt > > Cheers, > > Ben > > > > On May 31, 12:39 am, Marc Ridey wrote: > > If you add this code, the markers in the map will not be shared with > > Stree

Re: [Google Maps API v3] I want to hide floatShadow Pane & overlayShadow Pane

2010-05-30 Thread Marc Ridey
Currently, the panes are only accessible using OverlayView: http://code.google.com/apis/maps/documentation/javascript/reference.html#OverlayView On Mon, May 31, 2010 at 12:13 AM, Thet Wai wrote: > I would like

Re: [Google Maps API v3] Re: I want to hide floatShadow Pane & overlayShadow Pane

2010-05-30 Thread Marc Ridey
If you add this code, the markers in the map will not be shared with StreetView. var map = new google.maps.Map(document.getElementById('map'), mapOptions); map.setStreetView(new google.maps.StreetViewPanorama(document.getElementById('map'))); This creates a new panorama and places it in the same

Re: [Google Maps API v3] streetview on page load query

2010-05-29 Thread Marc Ridey
Your code looks correct. We'll flag it as a bug. Thanks. On Sun, May 30, 2010 at 1:06 AM, dbrb2 wrote: > Hello, > > Apologies if this is documented somewhere already - I haven't found it > if it is! > > I have a map here: > > http://bbarker.co.uk/cycleHire > > I am trying, initially, to get stre

Re: [Google Maps API v3] Re: Getting location of streetview panorama in API v3

2010-05-29 Thread Marc Ridey
t; > The problem I have then is that I want to find out what the _actual_ > location of the panorama returned is rather than the one I requested. > That way then I can orient the view (using similar code to what you > showed) towards the point of interest. > > I hope that makes i

Re: [Google Maps API v3] Detect if streetvew is available for a point / getNearestPanoramaLatLng method

2010-05-28 Thread Marc Ridey
Sorry, StreetViewClient is not exposed in the interface. Please add an entry in http://code.google.com/p/gmaps-api-issues/issues/list?can=2&q=apitype:Javascript3&colspec=ID+Type+Status+Introduced+Fixed+Summary+Internal+Stars&cells=tiles

Re: [Google Maps API v3] Re: Street View de V2 -> V3

2010-05-28 Thread Marc Ridey
en. > > Ceci est le premier point. > > Ensuite, si vous cliquer sur "vue à 360°", vous verez apparaitre la > vue StreetView dans une nouvelle fenêtre. Je vous met directement le > lien > http://www.justacote.com/view_street.php?ID_ENTREPRISE=1091550 > > Voi

Re: [Google Maps API v3] Street View de V2 -> V3

2010-05-27 Thread Marc Ridey
Bonjour piep14, Pourrais-tu m'expliquer un peu plus ce que tu veux faire? Veux-tu afficher un marker sur la carte quand StreetView est disponible? Veux-tu afficher un marjker dans StreetView? Merci Marc On Fri, May 28, 2010 at 2:52 AM, piep14 wrote: > Bonjour, je suis français, je poste la tra

Re: [Google Maps API v3] Fullscreen street view

2010-05-27 Thread Marc Ridey
No. On Thu, May 27, 2010 at 5:39 PM, JOHO wrote: > Is it possible to view street view in full screen mode? I know version > 2 of the API has this function. > > -- > You received this message because you are subscribed to the Google Groups > "Google Maps JavaScript API v3" group. > To post to thi

Re: [Google Maps API v3] Getting location of streetview panorama in API v3

2010-05-27 Thread Marc Ridey
Try this. Drag the pegman on the map and the streetview panorama will point towards the marker on open. Drag the marker and the streetview panorama will follow. http://maps.google.com/maps/api/js?sensor=false";> function initialize() { var opts = { center:

[Google Maps API v3] Re: Street View deets please!

2010-05-26 Thread Marc Ridey
Hi Brad, Have a look at this too: http://blog.mridey.com/2010/05/how-to-create-and-display-custom.html Marc -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to google-maps-js-api...@googlegrou

Re: [Google Maps API v3] Re: Problem with getVisible()

2010-05-26 Thread Marc Ridey
failing display is at: > http://m.vpike.com/?p=lax&submit=Streetview&r=b > > Thanks, > Al > > > > On May 25, 6:35 pm, Marc Ridey wrote: >> getVisible applies to the StreetVIewPanorama view. It makes the whole >> StreetVIew panorama with all the c

Re: [Google Maps API v3] Problem with getVisible()

2010-05-25 Thread Marc Ridey
getVisible applies to the StreetVIewPanorama view. It makes the whole StreetVIew panorama with all the controls visible. Even if a valid panorama is not currently loaded in the view, getVisible() will still return true. getVisible() is mostly usefull when the map and panorama are used together to d

  1   2   >