Author Topic: Demo maps ?  (Read 3514 times)

archived

  • Hello, I'm new here
  • Posts: 0
    • View Profile
Demo maps ?
« on: May 10, 2005, 04:23:21 pm »
Hi,

I remember talking about that some default demo maps will be delivered with Pluto to have some demo and not start with blank maps.

But can't remember if this was made and where are these maps ?

Support web site says that you "can download demo maps at the links below" - but I can't see any links...

Thanks in advance,

Rob.

archived

  • Hello, I'm new here
  • Posts: 0
    • View Profile
Demo maps ?
« Reply #1 on: May 11, 2005, 11:38:35 am »
Hi,

I'm trying to put some devices on my maps. Is this feature working already ?

I have 4 surveillance cams and would like to put them on security map, but they don't appear on left side as is suggested in help for maps...

Thanks in advance,

Rob.

archived

  • Hello, I'm new here
  • Posts: 0
    • View Profile
Demo maps ?
« Reply #2 on: May 11, 2005, 01:32:12 pm »
Hi,
The surveillance cameras doesn't appear on the floorplan because it was a missing field in DeviceCategory_DeviceData table (PK_FloorplanObjectType).
Please do the following:
- run the query
Code: [Select]
insert into pluto_main.DeviceCategory_DeviceData
( FK_DeviceCategory, FK_DeviceData, IK_DeviceData, AllowedToModify, Description)
values
(  '93',  '11',  NULL,  '1',  'Floorplan object type')
either in console or in phpmyadmin;
- delete and recreate the cameras devices in order to inherit the device data from DeviceCategory_DeviceData;
- for every camera device, choose coresponding object type in wizard/device/surveillance cameras;
- go to device/floorplan wizard and choose "camera": you should see/move you cameras on the floorplan.