RE: [mapguide-users] window open

2009-02-23 Thread DYUTI

hi
thank u mark.
i chose this route because i'm using mapguide maestro.can i use" popup
maptip with a link to window "in maestro? someone told me it can be used 
with studio only.

thanx& regards
dyuti

Mark Pendergraft wrote:
> 
> What you have looks pretty good, except that you will need to create a
> box that covers your point for the mgPolygon.
> 
> First you need to create a MgCoordinateCollection to populate a
> MgLinearRing, then you use $geometryFactory->CreatePolygon(mgLinearRing,
> nothing);
> 
> Take a look at this function.  It uses MgGeometryFactory, and a MgPoint
> to create a box that surrounds the point supplied.  The function returns
> a MgPolygon
> 
> Private Function GetBoundingBox(ByVal geomFact As MgGeometryFactory,
> ByVal point As MgPoint) As MgPolygon
> 
> Dim pgon As MgPolygon
> Dim coordColl As New MgCoordinateCollection
> coordColl.Add(geomFact.CreateCoordinateXY(point.Coordinate.GetX
> - 5, point.Coordinate.GetY + 5))
> coordColl.Add(geomFact.CreateCoordinateXY(point.Coordinate.GetX
> + 5, point.Coordinate.GetY + 5))
> coordColl.Add(geomFact.CreateCoordinateXY(point.Coordinate.GetX
> + 5, point.Coordinate.GetY - 5))
> coordColl.Add(geomFact.CreateCoordinateXY(point.Coordinate.GetX
> - 5, point.Coordinate.GetY - 5))
> coordColl.Add(geomFact.CreateCoordinateXY(point.Coordinate.GetX
> - 5, point.Coordinate.GetY + 5))
> 
> Dim linRing As MgLinearRing =
> geomFact.CreateLinearRing(coordColl)
> pgon = geomFact.CreatePolygon(linRing, Nothing)
> 
> Return pgon
> 
> End Function
> 
> You can create a MgPoint by doing the following:
> 
> Dim geomFact As New MgGeometryFactory
> Dim coord As MgCoordinate = geomFact.CreateCoordinateXY(X,
> Y)
> 
> ' create the actual mggeometry
> Dim point As MgPoint = geomFact.CreatePoint(coord)
> 
> 
> The LayerResourceId & schema can be obtained like so:
> 
> ' get the layer to search
> Dim layer as MgLayer =
> Map.GetLayers().GetItem("your_layer_name_here")
> 
> ' Get the layer resource identifier
> Dim LayerResId As New
> MgResourceIdentifier(layer.GetFeatureSourceId())
> 
>' get the layer default schema
>Dim layerSchema as string =
> layer.GetFeatureClassName
> 
> 
> As a side note.  Everytime you assign a value to the MgFeatureReader,
> you will need to close it immediately afterwards.  This has screwed me a
> few times.
> 
> After you get the point, you can use the MgFeatureReader to getString(),
> or getInteger(), etc to obtain the values that you need to pass to
> your pop-up window.
> 
> Out of curiosity, why did you choose to go this route instead of the
> pop-up MapTip with a link to your new window?  The only reason I have
> code like this in my map is so I can zoom to a point returned from
> Google Maps when the user enters an address into a search field.  I much
> prefer the simplicity of letting MapGuide do the grunt work.  ;)
> -Mark
> 
> 
> 
> 
> 
> -Original Message-
> From: mapguide-users-boun...@lists.osgeo.org
> [mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of DYUTI
> Sent: Thursday, February 19, 2009 11:03 PM
> To: mapguide-users@lists.osgeo.org
> Subject: RE: [mapguide-users] window open
> 
> 
> hi
> 
>   thank u very much mark..
>  But i've still doubts in this .shall i use
> "
> $geometryFactory = new MgGeometryFactory();
> $mgPolygon = $geometryFactory->Create mgPolygon($gp.x,$gp.y);  "
> 
> to create mg polygons from the N/E coordinates.
> 
> Instead of "geom" u have used in vb coding shall i use this
> $mgPolygon.Then
> for getting  LayerResourceID & Schema shall i use coding or can i
> directly
> give that values..
> 
> 
> Thanks and regards
> 
> dyuti
> 
> 
> 
> Mark Pendergraft wrote:
>> 
>> In VB:
>> 
>> Dim geom As MgGeometry
>> Dim query As New MgFeatureQueryOptions()
>> query.SetSpatialFilter("Geometry", geom,
>> MgFeatureSpatialOperations.Intersects)
>> Dim fr as MgFeatureReader = FeatService.SelectFeatures(LayerResId,
>> "Default:Temp", query)
>> 
>> Note that geom is a mggeometry object used to query the layer.  It
> could
>> be a point, polygon, etc.
>> LayerResId refers to the MgResourceIdentifier for a specified layer
>> "Default:Temp" is the layer's schema name.
>> 
>> In your case, you will probably want to create a MgPolygon from the
>> point the user clicked.  Then you will use the layer containing the
>> points you want to display info about to get your LayerResId and
> default
>> schema.
>> 
>> -Mark
>> 
>> -Original Message-
>> From: mapguide-users-boun...@lists.osgeo.org
>> [mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of DYUTI
>> Sent: Wednesday, February 18, 2009 11:32 PM
>> To: mapguide-users@lists.osgeo.org
>> Subject: Re: [mapguide-users] window open
>> 
>>

RE: [mapguide-users] How to add rotation to symbol instance

2009-02-23 Thread Jamo

 Thought that looked to easy :o
When I saw pointusage i was thinking it was going to create a new
element :(

Cheers
-- 
View this message in context: 
http://n2.nabble.com/How-to-add-rotation-to-symbol-instance-tp2375355p2375800.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] How to add rotation to symbol instance

2009-02-23 Thread Jason Birch
This is just from a quick perusal of the SymbolDefinition schema:
 
http://tinyurl.com/cgxkko
 
but I think  inside of the PointUsage element would do it...
 
Jason
 


From: mapguide-users-boun...@lists.osgeo.org on behalf of Jamo
Sent: Mon 2009-02-23 4:39 PM
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] How to add rotation to symbol instance


I Would like to apply rotation to the entire symbol about the centre point
...?  ??

<>___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] How to add rotation to symbol instance

2009-02-23 Thread Jamo

Anyone know how to add rotation to a symbol instance ?
Layer style part.

  

  Light Tower
  

 
Library://Production/Symbols/Pit.SymbolDefinition
  

  Pit
  LineColor
  

  

  

  

Symbol Style Part.


http://www.w3.org/2001/XMLSchema-instance";
xsi:noNamespaceSchemaLocation="SymbolDefinition-1.1.0.xsd" version="1.1.0">
Pit



M -2,-2 L -2,2 L 2,2 L 2,-2 Z
 
  %FillColor%
  %LineColor%
  0.0


'E'
'Arial'
%LineColor%





FillColor

Fill Color
The Fill Color
String


LineColor

Line Color
The Line Color
String


Label

Label
The Label Text
String


Rot

Rotation
Point Symbol Rotation
String

 



I Would like to apply rotation to the entire symbol about the centre point
...?  ?? 
-- 
View this message in context: 
http://n2.nabble.com/How-to-add-rotation-to-symbol-instance-tp2375355p2375355.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] Silverlight/Moonlight Viewer

2009-02-23 Thread Johan Nel

Hi All

The reason that MG6.5 was great in 1996, is as valid today as it was then.  
When the rest of the industry said you could only use raster as a web
client, Mapguide 
proved that you could do it with vector. 

Raster and Ajax is great if you want to do public websites and shings that
do not have to be live, but as GIS moves into mission critical status at
utilities, with many layers and huge datasets, tiling and raster just does
not cut it.

We are in the process of migrating from 6.5 (like Carl) and would be very
interested in a vector viewer, whether it is silverlight or another
technology. (Interestingly that is also where some others in the industry
are moving toward).

What would be the process to move this into a design direction.  If Carl and
others are willing to contribute we could look at that from our side as
well.




Jason Birch wrote:
> 
> Hi Carl,
> 
> MGOS supports an image type of PNG8, which automatically reduces the bit
> depth of images from 24 to 8 bits as they are rendered.  This can't
> really be used with tiled images though because each tile would have a
> different palette.  I think that Zac did some experimentation running
> third-party compression tools over his tile cache?  Regardless, I don't
> think you'll see perceived performance as high as MG 6.5 from any of the
> current viewers any time soon.
> 
> I would suspect that without a client that uses the (undocumented?) DWF
> eMap format, this will be removed from the server code.  I agree with
> you that a rich client viewer needs something other than XML/JSON for
> performance though.  I'm not sure how hard it would be to add a binary
> content type to the mapagent; I know that Haris has been thinking about
> this for the REST extension.  There are probably other things to think
> about too, such as getting this content type past firewalls, performance
> when using within Silverlight/Flex, etc.
> 
> Jason
> 
> -Original Message-
> From: Carl Jokl
> Sent: February-23-09 1:55 AM
> Subject: Re: [mapguide-users] Silverlight/Moonlight Viewer
> 
> One issue that has been a problem though as I have
> heared reported from others in the company is the matter of image
> compression. This hits performance on both the AJAX and DWF viewer
> simply
> because the images being sent across the internet are larger than in
> MapGuide 6.5.
> 
> [snip]
> 
> I might fear also that if the DWF view is not going to be supported
> anymore
> there might also be a case for pulling the plug on supporting
> transmitting
> the map image data from the server in DWF form too.
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> 
> 

-- 
View this message in context: 
http://n2.nabble.com/Silverlight-Moonlight-Viewer-tp1812471p2374931.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] Maestro and Search

2009-02-23 Thread MatTech

Hello everyone.  I'm using Maestro 1.0.9 with Mapguide 2.0.2 and want to
search or query by an ID number.  I have looked at the example data and
search was working fine but query wasn't.  Even the example on Mapguides
site wasn't working for me(or maybe I just don't know what I'm doing)  For
the most part I have been using Fusion for my personal data since it's very
easy to use.  My question is does Maestro have a built in feature for
creating a search or query?  If not then what's the easiest way to include
this in my map?  Is it easier with Fusion or the Java/php viewer.  I haven't
found much on this so that's why I'm asking the questions.  I'm very new to
this so sorry in advance.  I just would really like to search for a parcel
by a simple 4 digit number and haven't had much luck figuring it out with
fusion and Maestro.
-- 
View this message in context: 
http://n2.nabble.com/Maestro-and-Search-tp2374188p2374188.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] ASP.NET MG2.0.2 - SelectFeatures Filter

2009-02-23 Thread Matteo

Hi Jackie,
  thanks for the help. The layer source is a MS SQL 2005 table with x and y
field. The strange thing is that the ID_TESTTOW field is a Integer field but
if I don't use single quote when set the filter I get the error.
Now I have modify filter replaced ID_TESTTOW=262 with ID_TESTTOW='262' and
the application work fine

Thanks
Matteo




Jackie Ng wrote:
> 
> What if you try single-quoting the numeric values?
> 
> - Jackie
> 
> 
> Matteo wrote:
>> 
>> Hi,
>>   I have a point layer with filter that i set from MapGuide Studio 2009
>> (the filter is "( Codec ='HR') AND  direction  = 'B->A' and  LQ  <= 2.50
>> and MNC=10 and  valid =01 and  ValidTestInfo =01")
>> Now I must select some whit this filter "( Codec ='HR') AND  direction  =
>> 'B->A' and  LQ  <= 2.50 and MNC=10 and  valid =01 and  ValidTestInfo =01
>> and ID_TESTTOW=262" but when I call the function SelectFeatures MapGuide
>> give me the error "An exception occurred in FDO component.String does not
>> represent a valid filter. "
>> 
>> I try to use Server.HtmlEncode function to encode filter but I have the
>> same error.
>> Can you help me?
>> Thanks
>> Matteo
>> 
>> 
> 
> 

-- 
View this message in context: 
http://n2.nabble.com/ASP.NET-MG2.0.2---SelectFeatures-Filter-tp2346772p2373723.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] Silverlight/Moonlight Viewer

2009-02-23 Thread Jason Birch
Hi Carl,

MGOS supports an image type of PNG8, which automatically reduces the bit
depth of images from 24 to 8 bits as they are rendered.  This can't
really be used with tiled images though because each tile would have a
different palette.  I think that Zac did some experimentation running
third-party compression tools over his tile cache?  Regardless, I don't
think you'll see perceived performance as high as MG 6.5 from any of the
current viewers any time soon.

I would suspect that without a client that uses the (undocumented?) DWF
eMap format, this will be removed from the server code.  I agree with
you that a rich client viewer needs something other than XML/JSON for
performance though.  I'm not sure how hard it would be to add a binary
content type to the mapagent; I know that Haris has been thinking about
this for the REST extension.  There are probably other things to think
about too, such as getting this content type past firewalls, performance
when using within Silverlight/Flex, etc.

Jason

-Original Message-
From: Carl Jokl
Sent: February-23-09 1:55 AM
Subject: Re: [mapguide-users] Silverlight/Moonlight Viewer

One issue that has been a problem though as I have
heared reported from others in the company is the matter of image
compression. This hits performance on both the AJAX and DWF viewer
simply
because the images being sent across the internet are larger than in
MapGuide 6.5.

[snip]

I might fear also that if the DWF view is not going to be supported
anymore
there might also be a case for pulling the plug on supporting
transmitting
the map image data from the server in DWF form too.
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] Connect to MS SQL Server

2009-02-23 Thread Jason Birch
The SQL Server 2005 provider that comes with Map 3D is proprietary, and
not available in MapGuide Open Source.  If you want to display this data
you will need to use MapGuide Enterprise.

If it's an option, I would suggest using the open source SQL Server 2008
provider.

Jason

-Original Message-
From: Stefan Dalakov
To: MapGuide Users Mail List
Subject: [mapguide-users] Connect to MS SQL Server

I have installed MS SQL Server Express Edition 2005 and have some tables

there, created by Map3D 2009, containing lines and points.
Which provider should I use to connect to this data as ODBC provider 
allows only point features?

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] Impossible To connect trougth ODBC to .csv

2009-02-23 Thread Jason Birch
As Dave said, it's broken (you can't get there from here) so at best
you'll need to find a workaround.

 

I can't find a Trac ticket for this one on the FDO site.  I'm guessing
that it is being tracked in ADSK's internal system, but it wouldn't hurt
to enter a bug report with as much detail as you can in the FDO Trac:

 

http://trac.osgeo.org/fdo/wiki/SubmitTicket

 

Jason

 

From: Micho Gar
Sent: February-23-09 2:47 AM
Subject: Re: [mapguide-users] Impossible To connect trougth ODBC to .csv

 

Ok, sorry for repeating the question, but it is very necessary to
resolve this.



___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Change layer label doesn't work

2009-02-23 Thread Peter Filip

I changed it as you described in those examples and now it works fine.

Thank you!



Kenneth Skovhede, GEOGRAF A/S wrote:
> 
> That is a known bug with the AJAX viewer:
> http://trac.osgeo.org/mapguide/ticket/167
> 
> Regards, Kenneth Skovhede, GEOGRAF A/S
> 
> 
> 
> Peter Filip skrev:
>> I'm trying to change a label but without any success..
>>
>> MgLayerCollection vrstvy = map.GetLayers();
>> vrstva1 = (MgLayer)vrstvy.GetItem(1);
>>
>> vrstva1.LegendLabel = cinnost;
>>
>> vrstva1.SetVisible(true);
>> vrstva1.ForceRefresh();
>>
>> map.Save(resourceService);
>>
>>
>> and then i refresh the map,and the label is the same as before..
>>   
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> 
> 

-- 
View this message in context: 
http://n2.nabble.com/Change-layer-label-doesn%27t-work-tp2371846p2372380.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Change layer label doesn't work

2009-02-23 Thread Kenneth Skovhede, GEOGRAF A/S

That is a known bug with the AJAX viewer:
http://trac.osgeo.org/mapguide/ticket/167

Regards, Kenneth Skovhede, GEOGRAF A/S



Peter Filip skrev:

I'm trying to change a label but without any success..

MgLayerCollection vrstvy = map.GetLayers();
vrstva1 = (MgLayer)vrstvy.GetItem(1);

vrstva1.LegendLabel = cinnost;

vrstva1.SetVisible(true);
vrstva1.ForceRefresh();

map.Save(resourceService);


and then i refresh the map,and the label is the same as before..
  

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Connect to MS SQL Server

2009-02-23 Thread Peter Filip

sl-king provider should work.. there is no oder provider as far as i know for
SQL 2005 
-- 
View this message in context: 
http://n2.nabble.com/Connect-to-MS-SQL-Server-tp2371943p2371996.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] Connect to MS SQL Server

2009-02-23 Thread Stefan Dalakov

Hi all,
I have installed MS SQL Server Express Edition 2005 and have some tables 
there, created by Map3D 2009, containing lines and points.
Which provider should I use to connect to this data as ODBC provider 
allows only point features?
I saw SL-king have a provider but the latest release there is for MGOS 
1.2 (FDO 3.2.2) and I would like to use it with MGOS 2.0 - I have both 
installations, but I would use 1.2 only if all other options fail?


Any help will be appreciated

Stefan Dalakov

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Change layer label doesn't work

2009-02-23 Thread Peter Filip

I'm trying to change a label but without any success..

MgLayerCollection vrstvy = map.GetLayers();
vrstva1 = (MgLayer)vrstvy.GetItem(1);

vrstva1.LegendLabel = cinnost;

vrstva1.SetVisible(true);
vrstva1.ForceRefresh();

map.Save(resourceService);


and then i refresh the map,and the label is the same as before..
-- 
View this message in context: 
http://n2.nabble.com/Change-layer-label-doesn%27t-work-tp2371846p2371863.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] Change layer label doesn't work

2009-02-23 Thread Peter Filip


-- 
View this message in context: 
http://n2.nabble.com/Change-layer-label-doesn%27t-work-tp2371846p2371846.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Impossible To connect trougth ODBC to .csv

2009-02-23 Thread Zac Spitzer
you could always load the text file into a database and read it that way

z


On Mon, Feb 23, 2009 at 9:46 PM, Micho Gar  wrote:
> Ok, sorry for repeating the question, but it is very necessary to resolve
> this.
>
> Greetings.
>
> 2009/2/20 Dave Wilson 
>>
>> As mentioned in an earlier thread there is a bug on this and even though
>> you might be able to make the feature source your layer will fail to
>> preview.
>>
>>
>>
>> It looks like the bug is an issue with the file lookup. FDO has mapped the
>> "table" name to the file name but instead of the period substituted an
>> underscore so when sending the request to the provider it appears to be
>> looking for filename_csv for the table name instead of filename.csv which is
>> what the ODBC DSN is expecting.
>>
>>
>>
>> Bottom line is it doesn't work.
>>
>>
>>
>> Dave
>>
>>
>>
>> From: mapguide-users-boun...@lists.osgeo.org
>> [mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of Micho Gar
>> Sent: Friday, February 20, 2009 2:25 AM
>> To: MapGuide Users Mail List
>> Subject: [mapguide-users] Impossible To connect trougth ODBC to .csv
>>
>>
>>
>> Hi all,
>>
>> After many attempts I have not been able to connect to a file .csv. Do you
>> know if you can connect somehow to a text file?.
>>
>> Greetings and thanks
>>
>> --
>> # michogar
>> # Analista Programador SIG
>> # Ubuntu Linux Counter 462666
>>
>>
>>
>> "Cuenta una leyenda que si reproduces un DVD de Windows Vista original al
>> revés se oye a Bill Gates entonando cantos satánicos... Pero eso no es lo
>> peor... Si lo reproduces del derecho... ¡Se instala!."
>>
>>
>> "It has a legend that if you play an original Windows Vista DVD backwards
>> to hear Bill Gates Satanic chanting songs ... But that's not the worst ...
>> If you play it right ... It installs!.
>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
>
>
>
> --
> # michogar
> # Analista Programador SIG
> # Ubuntu Linux Counter 462666
>
>
>
> "Cuenta una leyenda que si reproduces un DVD de Windows Vista original al
> revés se oye a Bill Gates entonando cantos satánicos... Pero eso no es lo
> peor... Si lo reproduces del derecho... ¡Se instala!."
>
>
> "It has a legend that if you play an original Windows Vista DVD backwards to
> hear Bill Gates Satanic chanting songs ... But that's not the worst ... If
> you play it right ... It installs!.
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>



-- 
Zac Spitzer -
http://zacster.blogspot.com
+61 405 847 168
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Impossible To connect trougth ODBC to .csv

2009-02-23 Thread Micho Gar
Ok, sorry for repeating the question, but it is very necessary to resolve
this.

Greetings.

2009/2/20 Dave Wilson 

>  As mentioned in an earlier thread there is a bug on this and even though
> you might be able to make the feature source your layer will fail to
> preview.
>
>
>
> It looks like the bug is an issue with the file lookup. FDO has mapped the
> "table" name to the file name but instead of the period substituted an
> underscore so when sending the request to the provider it appears to be
> looking for filename_csv for the table name instead of filename.csv which is
> what the ODBC DSN is expecting.
>
>
>
> Bottom line is it doesn't work.
>
>
>
> Dave
>
>
>
> *From:* mapguide-users-boun...@lists.osgeo.org [mailto:
> mapguide-users-boun...@lists.osgeo.org] *On Behalf Of *Micho Gar
> *Sent:* Friday, February 20, 2009 2:25 AM
> *To:* MapGuide Users Mail List
> *Subject:* [mapguide-users] Impossible To connect trougth ODBC to .csv
>
>
>
> Hi all,
>
> After many attempts I have not been able to connect to a file .csv. Do you
> know if you can connect somehow to a text file?.
>
> Greetings and thanks
>
>
>
> --
> # michogar
> # Analista Programador SIG
> # Ubuntu Linux Counter 462666
>
>
>
> "Cuenta una leyenda que si reproduces un DVD de Windows Vista original al
> revés se oye a Bill Gates entonando cantos satánicos... Pero eso no es lo
> peor... Si lo reproduces del derecho... ¡Se instala!."
>
>
> "It has a legend that if you play an original Windows Vista DVD backwards
> to hear Bill Gates Satanic chanting songs ... But that's not the worst ...
> If you play it right ... It installs!.
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>


-- 
# michogar
# Analista Programador SIG
# Ubuntu Linux Counter 462666



"Cuenta una leyenda que si reproduces un DVD de Windows Vista original al
revés se oye a Bill Gates entonando cantos satánicos... Pero eso no es lo
peor... Si lo reproduces del derecho... ¡Se instala!."


"It has a legend that if you play an original Windows Vista DVD backwards to
hear Bill Gates Satanic chanting songs ... But that's not the worst ... If
you play it right ... It installs!.
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Silverlight/Moonlight Viewer

2009-02-23 Thread Carl Jokl

There have been some potential improvements in the performance of the AJAX
viewer in MapGuide 2010. One issue that has been a problem though as I have
heared reported from others in the company is the matter of image
compression. This hits performance on both the AJAX and DWF viewer simply
because the images being sent across the internet are larger than in
MapGuide 6.5. I have not been personally involved in investigating this so
don't have all the details. I was just curious given that this thread
suggested that someone might try and work on a replacement for the DWF
viewer in Silverlight. If nothing has come of that then that answers the
question. In reference to the last post, in terms of performance I had in
mind a viewer which wasn't using image tiles at all rather was rendering the
DWF on the client directly as the ActiveX plugin does. This would be a big
undertaking as essentially you would need a component to parse DWF and
another to graphically render it. Finally you would need to add the MapGuide
control to this component to handle things like the menus and exposing the
client API. 

If a Silverlight viewer were used that just used the Image Tiles like the
AJAX viewer then I suspect the performance might not be so much different.
If the key performance issue is bandwidth and time taken to transmit image
tiles across the internet that will be an issue regardless of the client
side technology rendering those tiles.

I might fear also that if the DWF view is not going to be supported anymore
there might also be a case for pulling the plug on supporting transmitting
the map image data from the server in DWF form too. If that becomes the case
a new viewer replacement viewer to take the place of the ActiveX control
becomes useless.  

-- 
View this message in context: 
http://n2.nabble.com/Silverlight-Moonlight-Viewer-tp1812471p2371322.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users