Ryan Prager Posted August 2, 2006 Posted August 2, 2006 Our company has a need to have a map of the office. This map would include all of the offices, cubicles, and other areas that are occupied by an employee or piece of equipment. These areas have certain data tied to them such as a user, PC, network ports, monitors, ect. For example: Office 220 has: User Network/Phone Ports PC Monitors All of the data I have stored into FileMaker. I'm wondering if there is a way to make a map out of my data. Attached is a simple example of what my map would look like. Thanks Office_Map_Example.bmp
Ender Posted August 2, 2006 Posted August 2, 2006 Hmm, "Map" implies there's importants to the relative locations of each cubical, but your data doesn't seem to include coordinates. If you only need them listed by Room, in two columns (as your example shows), this is easy enough to do with a List View layout, with the column option. Perhaps you can clarify your needs.
Ryan Prager Posted August 2, 2006 Author Posted August 2, 2006 Thanks for the quick reply. Well actually to make more sense of my original post, I would probably actually divide the map up into 3 sections (we have 3 different suites of offices). This could be 3 different records in FileMaker (Suite 100, 200, 300) Most of the offices are not lined up in columns like the picture. My original idea was to use Microsoft Visio to import our building map and then using ODBC I would be able to take my data from FM and place it anywhere I needed to in Visio. I tried this method a couple months back with no real luck. It would work but it isn't dynamic when changes occur. That's why I was wondering if there was a way in FM since all my data is already in there.
Ender Posted August 2, 2006 Posted August 2, 2006 If you had just a few workstations to map, you could hard-code them on a layout (using a separate relationship for each to see thier related data), but the layout itself would have to be modified for any changes to the physical locations of the cubicals. If you want something more dynamic, I think you'd have to use Flash or a plug-in, like xmChart. I don't know my way around Flash, but I seem to remember a demo that allowed the objects (like your cubicals) to be movable, while staying linked to their related data. Using xmChart to put together a map wouldn't be quite that interactive, as the coordinates of each cubical would need to be figured out ahead of time and entered as record data for each Cubical. The plugin then takes all that coordinate data, and basically puts it together on an x-y chart.
mse Posted August 3, 2006 Posted August 3, 2006 (edited) Look at this http://www.clevelandconsulting.com/cp-app/ste_cat/CCHierarchy and the file attached (I don't remember the author, search these forums) ChessBoard.fp7.zip Edited August 3, 2006 by Guest
Ryan Prager Posted August 3, 2006 Author Posted August 3, 2006 I took a look at the website you provided. They had something about system maps but it seemed much different than anything I was looking for. However, the chessboard file was very interesting. I just wish I could see the code behind it. I'll see if I can track down the creator.
Ryan Prager Posted August 3, 2006 Author Posted August 3, 2006 On a side note...a solution would even work if I had a map type figure and that every office or cubicle would be able to pull up a tooltip with all the data. Not sure if that is possible, just trying to think of different ways.
comment Posted August 3, 2006 Posted August 3, 2006 If all your cubicles can fit a common grid (common to all suites), then it can be done - and it's not that difficult either. Otherwise you'll need to look for a solution outside of Filemaker.
Ryan Prager Posted August 3, 2006 Author Posted August 3, 2006 If all your cubicles can fit a common grid (common to all suites), then it can be done - and it's not that difficult either. Otherwise you'll need to look for a solution outside of Filemaker. Well yes there are some areas where the cubicles are in nice rows. There are others like offices that are just spread all over the building. But I am interested. How would I go about this project assuming they can fit a common grid for all suites?
comment Posted August 3, 2006 Posted August 3, 2006 Basically, you create a table of GridSlots (could be nothing but serial numbers), and a "x" (all records) relationship to this table. You place multiple portals to GridSlots on the layout, each portal starting on different row, and showing one or more rows. Now all you need to do is assign each cubicle to a slot and relate cubicles to GridSlots by SlotID. Place fields from cubicles inside the portals. To show only cubicles from a particular suite, add a global gSuiteID field to the GridSlots table and filter the relationship to cubicles by this field.
mse Posted August 3, 2006 Posted August 3, 2006 Now all you need to do is assign each cubicle to a slot and relate cubicles to GridSlots by SlotID. Place fields from cubicles inside the portals. To show only cubicles from a particular suite, add a global gSuiteID field to the GridSlots table and filter the relationship to cubicles by this field. That's what I meant... with a navigation engine moving things around
macmangler Posted August 8, 2006 Posted August 8, 2006 You could have a blast with this..... and do some really nice portal work and relationships... you'd be set. When you said map... I assumed, literally a map... see attatched. I did not go nutz... but you could. The green cubicle is a button. OFFICE.zip
Ryan Prager Posted August 8, 2006 Author Posted August 8, 2006 Wow, the example was almost exactly what I had pictured. Thanks! Do you think it's possible to add tooltips to each of the objects to show specfic data for a cubicle/office?
macmangler Posted August 12, 2006 Posted August 12, 2006 (edited) Interesting concept....however, in my "basic" example a button will get to the desired information faster than the "pause" you must wait for, for the tool tip to kick in. A tool tip needs to be "programmed," and is not a record. Example... if an employee moves cubicles or is fired... you are not altering a record, you have to re-program the change. I would not go that route... you want to be able to modify a record. I am contimplating building my office network map in the style I presented. However, I only have about 80 terminals and printers and 30 employees. I pretty much know all my IP addresses by heart... and who sits where. Edited August 12, 2006 by Guest More thoughts on tool tips....
RodSierra Posted August 12, 2006 Posted August 12, 2006 Here's a way to dynamically view all locations graphically within one view. You have a table setup that contains one record for each cubicle with an id field, and another id field for floor. You can add more if necessary, building, state, country, etc. Do a self join relationship on these id fields. In a new layout make a one row portal, and use the set initial row on each portal to increment thru the quantity of locations you have. I've set this up for different floors and rooms for reservations for instance. Or in the case of factory quality control I used this to graphically allow operators to choose from the map on a touch screen different machines. Then within the portal I normally have a calculated text field that gives details, such as table occupied, or next reservation information, etc. This is a clear background field, then behind it is a calculated container field that can change the color of the entire portal area or a graphic, etc. Makes it easy to see open tables, running machines, etc. You can also put buttons in these. Use a scriptparameter to identify the button, simply a number 1,2,or 3, then program all the buttons to perform the same script. And test the scriptparameter to determine which button was pressed, use the go to related record script step to set the working record, and go from there. I've set these up quite quickly, once you do one the way you want the graphics, just duplicate them and go in and change the initial portal row number. Group them and move them around where you want on the layout. I've set these up to where the admin user can move them around, make a new layout, say for buffet's versus sit down, etc. Hope this makes sense. Rod
RodSierra Posted August 12, 2006 Posted August 12, 2006 A note on my previous post, the relationship is not described correctly...give me a few minutes and I'll post and example file, sorry for that, had it in my head and did not check my file first, be along shortly with an example. Rod
RodSierra Posted August 12, 2006 Posted August 12, 2006 Here's the example file, sorry about the confusion on my first post, got ahead of myself. This should give you an idea of what I'm talking about. Rod Map.zip
Recommended Posts
This topic is 6677 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now