[mapguide-users] MapGuide Maestro 6.0m13 and mapguide-react-layout 0.14.10 released
Nimrod Cnaan
nimcnaan at gmail.com
Tue Feb 18 17:06:12 PST 2025
SOLVED: since the server is based on an older mapagent version, we hacked
the mapagent.ts getSiteVersion() function with hardcoded JSON structure
string.
this was done since the old version return XML instead of JSON.
/*
public getSiteVersion(): Promise<SiteVersionResponse> {
const p1 = { operation: "GETSITEVERSION", version: "1.0.0",
username: "Anonymous" };
const url = this.stringifyGetUrl({ ...p1 });
return this.get<SiteVersionResponse>(url);
}
*/
public getSiteVersion(): Promise<SiteVersionResponse> {
const jsonResponse = {
SiteVersion: {
"@xmlns:xsi": ["http://www.w3.org/2001/XMLSchema-instance"],
"@xsi:noNamespaceSchemaLocation": ["SiteVersion-1.0.0.xsd"],
Version: ["3.1.1.4601"]
}
};
// Convert the response to match the expected interface
return Promise.resolve({ Version: jsonResponse.SiteVersion.Version[0] });
}
בתאריך יום ג׳, 18 בפבר׳ 2025 ב-10:41 מאת Jackie Ng <
jumpinjackie at gmail.com>:
> Please fully expand all the properties on the logged MapGuide/INIT_ERROR
> action, especially the error property and screenshot that
>
> - Jackie
>
> On Tue, 18 Feb 2025 at 18:33, Nimrod Cnaan <nimcnaan at gmail.com> wrote:
>
>> [image: image.png]
>>
>> בתאריך שבת, 15 בפבר׳ 2025 ב-3:11 מאת Jackie Ng via mapguide-users <
>> mapguide-users at lists.osgeo.org>:
>>
>>> This is not helpful. I do not see any relation between the
>>> unexpected token `<` and this error.
>>>
>>> The mapInit property is an AJAX viewer API property that custom task
>>> pane content can test to see if the map viewer is ready to start using
>>> their other APIs. This error suggests that you must have a custom InvokeURL
>>> command that has some javascript that calls this property without testing
>>> that the call chain is already not null/undefined (ie.
>>> Caling parent.parent.mapInit without testing that parent.parent is not
>>> null/undefined first)
>>>
>>> Again I am just speculating because I have not been given enough
>>> information to work with.
>>>
>>> Can you switch over to use viewer-debug.js (instead of viewer.js) and
>>> provide screenshots of the viewer and relevant parts of the developer tools
>>> where the error is happening?
>>>
>>> - Jackie
>>>
>>> You wrote:
>>>
>>> this is the Error we get - Uncaught TypeError: Cannot read properties of
>>> undefined (reading 'mapInit')
>>> at About:486:42
>>>
>>> _______________________________________________
>>> mapguide-users mailing list
>>> mapguide-users at lists.osgeo.org
>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>
>>
>>
>> --
>>
>> בכבוד רב,
>>
>> *נמרוד כנען** | *גיאומינד שירותי GIS – פיתוח, ייעוץ ושירותי ענן
>> ישיר: 048101268 | נייד: 0525355483 | nimrod at geomind.co.il
>>
>> נא בקרו באתר החדש שלנו http://geomind.co.il
>>
>>
>
> --
> http://themapguyde.blogspot.com
>
--
בכבוד רב,
*נמרוד כנען** | *גיאומינד שירותי GIS – פיתוח, ייעוץ ושירותי ענן
ישיר: 048101268 | נייד: 0525355483 | nimrod at geomind.co.il
נא בקרו באתר החדש שלנו http://geomind.co.il
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/mapguide-users/attachments/20250219/1dbee782/attachment.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image.png
Type: image/png
Size: 100065 bytes
Desc: not available
URL: <http://lists.osgeo.org/pipermail/mapguide-users/attachments/20250219/1dbee782/attachment.png>
More information about the mapguide-users
mailing list