hi, the navigation script overwrites the transform attribute of the group with the id "mainMapGroup" while panning. It might work if you nest another group within mainMapGroup and put your matrix transform and at that inner/nested group so it does not get overwritten. thus the structure would look like the following <svg> <g id="mainMapGroup"> <g id="yourDataGroup" transform="matrix(....)"> </g> </g> </svg> I do recommend, however, to multiply the y-axis with -1 instead of using a matrix transform. That way you can also handle text labels, that would appear upside down if you use your matrix transform. Andreas --- In [email protected], maria ulfa <[EMAIL PROTECTED]> wrote: > > this's my troubled code: > > <svg id="mainMap" x="0" y="15" viewBox="697554.127297268 9193758.868026871 1257.0872087649768 1603.7535606101155" > > <g id="mainMapGroup" transform ="matrix(1 0 0 -1 0 1.8389121489614353E7)"> > <path id="lahan" > d="M698678.6460672867,9195529.127695648 > L698692.6227733684,9195479.25784651 ......................................... z "/> > </g> > </svg> > > > i converted that svg from gml. i tried to modify the transform attribute but it didn't help. and it also troubled in zooming manual. > > thanks for attention.... > > > > --------------------------------- > Do You Yahoo!? > Yahoo! Small Business - Try our new Resources site! > > [Non-text portions of this message have been removed]
----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

