To make it secure i set the table to "Unlisted" but i'm not sure will it be
secret???
How can i change color and shape of markers???
Thanks in advance

On Mon, Mar 28, 2011 at 12:19 AM, Barry Hunter <[email protected]>wrote:

> Yes the table needs to be public for the map to show*.
>
> But surely if you putting the data on a map, its public anyway.
>
> You said you where plotting all the lines on the map - meant the data
> had to be in javascript (or accessible by javascript, such as xml, or
> json) then it would of been readable too.
>
> You can't put data online and not have public, if it can be viewed, it
> can be copied. Although you can put technical restrictions (mainly
> around only allowing small portions to be viewed at any one time) to
> make it harder.
>
>
> * Unless you subscribe to Google Maps API Premier.
>
>
> On 27 March 2011 16:53, FARAH SIRAJ <[email protected]> wrote:
> > Actually i gave just the example of id due to security issues. Yes this
> is
> > not the id.
> > Yes after making table public i can see markers but due to security
> issues i
> > don't want to make it public so is there any alternate way to import
> table
> > with the surety that it is not public
> > Public means the table will be public or the map or both??? can you
> explain
> > please?
> > Thanks in advance
> > On Sun, Mar 27, 2011 at 8:48 PM, [email protected] <
> [email protected]>
> > wrote:
> >>
> >> On Mar 27, 8:14 am, FARAH SIRAJ <[email protected]> wrote:
> >> > In fusion table when i'm using the API so no marker is displaying. I
> >> > have
> >> > latitude in col 1 and longitude in col 2
> >> > var l = new GLayer("ft:29879");
> >> >    l.setParameter("h", "false");
> >> >    l.setParameter("s", "select col1 from 29879");
> >> >    map.addOverlay(l)
> >> > But through visualize option markers are showing please tell me the
> >> > error?
> >>
> >> http://www.google.com/fusiontables/DataSource?dsrcid=29879
> >> Sorry, the table you have requested does not exist.
> >>
> >>  -- Larry
> >>
> >> >
> >> > On Sun, Mar 27, 2011 at 2:31 AM, FARAH SIRAJ
> >> > <[email protected]>wrote:
> >> >
> >> >
> >> >
> >> >
> >> >
> >> >
> >> >
> >> > > Thanks Sir Barry
> >> > > But the actual problem is thatI have made a code that map my excel
> >> > > data.
> >> > > Firstly i used  V2 APIs but the speed was so slow because i have to
> >> > > plot
> >> > > 6000rows data then i tried V3 but still it is slow and i don't want
> >> > >  to use
> >> > > fusion table due to security issues.Can anyone tell me the alternate
> >> > > way to
> >> > > speedup my code???
> >> > > please help me. Thanks in advace
> >> >
> >> > > On Thu, Mar 24, 2011 at 5:29 PM, Barry Hunter
> >> > > <[email protected]>wrote:
> >> >
> >> > >> Import your data into fusion tables. In the new process you will be
> >> > >> creating a table in Fusion tables. That table will have a unique id
> >> > >> (plainly visible in the URL)
> >> >
> >> > >> On 24 March 2011 07:44, FARAH SIRAJ <[email protected]>
> >> > >> wrote:
> >> > >> > Yes i read about Fusion table but in its API it needs table ID.
> For
> >> > >> > example : var tableid = 297050;
> >> > >> > I don't have a knowledge about SQL.
> >> > >> >  I want to map my data from excel sheet using fusion table API so
> >> > >> > for
> >> > >> > excel what id will i give in the code?
> >> > >> > I want to plot data as a plolyline rather than a marker or point
> >> > >> > but i
> >> > >> > couldn't find API for polyline as given in simple V2 maps API
> >> >
> >> > >> > Can anyone help me?
> >> > >> > Waiting for reply.
> >> > >> > Thanks in advance.
> >> >
> >> > >> > On Mar 24, 7:48 am, FARAH SIRAJ <[email protected]>
> >> > >> > wrote:
> >> > >> >> I have send the code to this group. I used mapV2 and in the code
> i
> >> > >> >> didn't use fusion tables. Can you please see the code and tell
> me
> >> > >> >> where can i make changes or alternate way to optimize it to make
> >> > >> >> it
> >> > >> >> faster?
> >> > >> >> Thanks
> >> >
> >> > >> >> On Mar 24, 1:27 am, Barry Hunter <[email protected]>
> wrote:
> >> >
> >> > >> >> > On 23 March 2011 19:57, [email protected]
> >> > >> >> > <[email protected]>
> >> > >> wrote:
> >> >
> >> > >> >> > > On Mar 23, 12:44 pm, FARAH SIRAJ
> >> > >> >> > > <[email protected]>
> >> > >> wrote:
> >> > >> >> > >> Hi all,
> >> > >> >> > >> I made a program that takes input from excel sheet for
> >> > >> >> > >> latitude
> >> > >> and
> >> > >> >> > >> longitude and plot them as polylines but problem is that if
> >> > >> >> > >> i'm
> >> > >> running it
> >> > >> >> > >> for approx 300 rows it is running with fast speed but when
> i
> >> > >> >> > >> run
> >> > >> it on 3000
> >> > >> >> > >> rows for excel so it becomes very slow and processing of
> map,
> >> > >> changing zoom
> >> > >> >> > >> level and event listener is also taking too much time. I
> want
> >> > >> >> > >> to
> >> > >> make it run
> >> > >> >> > >> fast.
> >> >
> >> > >> >> > > Perhaps you could share with us how you made it run slow.
> >> >
> >> > >> >> > >> How can i do this. Can anyone help me how to make it fast?
> >> > >> >> > >> Thanks in advance
> >> >
> >> > >> >> > > Have you looked at v3 and FusionTablesLayers?
> >> >
> >> > >> >> > Its not well documented, but can use Fusion tables with v2,
> too
> >> > >> >> > if
> >> > >> want.
> >> >
> >> > >> >> >     var l = new GLayer("ft:136090");
> >> > >> >> >     l.setParameter("h", "false");
> >> > >> >> >     l.setParameter("s", "select col5 from 136090");
> >> > >> >> >     map.addOverlay(l)
> >> >
> >> > >> >> > Where 136090 is the id of a public table. and col5 is the
> >> > >> >> > Position
> >> > >> (or
> >> > >> >> > Latitude for multicolumn position) column
> >> >
> >> > >> >> > change h to true to get a heatmap.
> >> >
> >> > >> >> > >  -- Larry
> >> >
> >> > >> >> > > --
> >> > >> >> > > You received this message because you are subscribed to the
> >> > >> >> > > Google
> >> > >> Groups "Google Maps API V2" group.
> >> > >> >> > > To post to this group, send email to
> >> > >> [email protected].
> >> > >> >> > > To unsubscribe from this group, send email to
> >> > >> [email protected].
> >> > >> >> > > For more options, visit this group athttp://
> >> > >> groups.google.com/group/google-maps-api?hl=en.- Hide quoted text -
> >> >
> >> > >> >> - Show quoted text -
> >> >
> >> > >> > --
> >> > >> > You received this message because you are subscribed to the
> Google
> >> > >> Groups "Google Maps API V2" group.
> >> > >> > To post to this group, send email to
> >> > >> > [email protected].
> >> > >> > To unsubscribe from this group, send email to
> >> > >> [email protected].
> >> > >> > For more options, visit this group at
> >> > >>http://groups.google.com/group/google-maps-api?hl=en.
> >> >
> >> > >> --
> >> > >> You received this message because you are subscribed to the Google
> >> > >> Groups
> >> > >> "Google Maps API V2" group.
> >> > >> To post to this group, send email to
> >> > >> [email protected].
> >> > >> To unsubscribe from this group, send email to
> >> > >> [email protected].
> >> > >> For more options, visit this group at
> >> > >>http://groups.google.com/group/google-maps-api?hl=en.
> >>
> >> --
> >> You received this message because you are subscribed to the Google
> Groups
> >> "Google Maps API V2" group.
> >> To post to this group, send email to [email protected].
> >> To unsubscribe from this group, send email to
> >> [email protected].
> >> For more options, visit this group at
> >> http://groups.google.com/group/google-maps-api?hl=en.
> >>
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google Maps API V2" group.
> > To post to this group, send email to [email protected].
> > To unsubscribe from this group, send email to
> > [email protected].
> > For more options, visit this group at
> > http://groups.google.com/group/google-maps-api?hl=en.
> >
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Maps API V2" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/google-maps-api?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API V2" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-api?hl=en.

Reply via email to